brintos

brintos / llvm-project-archived public Read only

0
0
Text · 500 B · 43089d4 Raw
20 lines · plain
1; RUN: llc < %s -mtriple=x86_64-linux-gnu -filetype=obj -o - \2; RUN:  | llvm-objdump --no-print-imm-hex --triple=x86_64-linux-gnu -d - \3; RUN:  | FileCheck %s4 5; CHECK: 0000000000000000 <test1>:6; CHECK-NEXT:   0: 74 00 je 0x2 <test1+0x2>7; CHECK-NEXT:   2: c3    retq8 9define void @test1() {10entry:11  callbr void asm sideeffect "je ${0:l}", "!i,~{dirflag},~{fpsr},~{flags}"()12          to label %asm.fallthrough [label %a.b.normal.jump]13 14asm.fallthrough:15  ret void16 17a.b.normal.jump:18  ret void19}20