[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / RISCV / compress-inline-asm.ll
blob848b1ad70c0e6d3e298680b1553130ea00461a85
1 ; RUN: llc -mtriple=riscv32 -mattr=+c  -filetype=obj < %s\
2 ; RUN: | llvm-objdump --triple=riscv32 --mattr=+c -d -M no-aliases -\
3 ; RUN: | FileCheck -check-prefix=CHECK %s
5 @ext = external global i32
7 define i32 @compress_test(i32 %a) {
8 ; CHECK-LABEL: <compress_test>:
9 ; CHECK:    c.add a0, a1
10 ; CHECK-NEXT:    c.jr ra
11   %1 = load i32, ptr @ext
12   %2 = tail call i32 asm "add $0, $1, $2", "=r,r,r"(i32 %a, i32 %1)
13   ret i32 %2