brintos

brintos / llvm-project-archived public Read only

0
0
Text · 443 B · d809e00 Raw
17 lines · plain
1; RUN: llc -mtriple=riscv32 -mattr=+relax -filetype=obj < %s \2; RUN:     | llvm-objdump -d -r - | FileCheck %s3 4; This test demonstrates that .option norelax has no effect on codegen5; when emitting an ELF directly.6 7declare i32 @foo(i32)8 9define i32 @bar(i32 %a) nounwind {10; CHECK-LABEL: <bar>:11; CHECK: R_RISCV_CALL12; CHECK: R_RISCV_RELAX13  tail call void asm sideeffect ".option norelax", ""()14  %1 = call i32 @foo(i32 %a)15  ret i32 %116}17