brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1022 B · f362392 Raw
25 lines · plain
1; We actually need to use -filetype=obj in this test because if we output2; assembly, the current code path will bypass the parser and just write the3; raw text out to the Streamer. We need to actually parse the inlineasm to4; demonstrate the bug. Going the asm->obj route does not show the issue.5; RUN: llc -mtriple=aarch64   < %s -filetype=obj | llvm-objdump --no-print-imm-hex --show-all-symbols -d - | FileCheck %s6 7; CHECK-LABEL: <foo>:8; CHECK:       d29579a0      mov x0, #439819; CHECK:       d65f03c0      ret10define i32 @foo() nounwind {11entry:12  %0 = tail call i32 asm sideeffect "ldr $0,=0xabcd", "=r"() nounwind13  ret i32 %014}15; CHECK-LABEL: <bar>:16; CHECK:        58000040                                         ldr    x0, 0x1017; CHECK:        d65f03c0                                         ret18; Make sure the constant pool entry comes after the return19; CHECK-LABEL:        <$d>:20define i32 @bar() nounwind {21entry:22  %0 = tail call i32 asm sideeffect "ldr $0,=0x10001", "=r"() nounwind23  ret i32 %024}25