42 lines · plain
1# RUN: not llc -mtriple=x86_64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s2 3--- |4 5 define i32 @foo(i32 %a) {6 entry:7 %0 = icmp sle i32 %a, 108 br i1 %0, label %less, label %exit9 10 less: ; preds = %entry11 ret i32 012 13 exit: ; preds = %entry14 ret i32 %a15 }16 17...18---19name: foo20tracksRegLiveness: true21liveins:22 - { reg: '$edi' }23body: |24 bb.0.entry:25 successors: %bb.1.less, %bb.2.exit26 liveins: $edi 4427 28 CMP32ri8 $edi, 10, implicit-def $eflags29 JCC_1 %bb.2.exit, 15, implicit killed $eflags30 31 ; CHECK: [[@LINE+1]]:8: basic block definition should be located at the start of the line32 less bb.1:33 $eax = MOV32r0 implicit-def dead $eflags34 RET64 killed $eax35 36 bb.2.exit:37 liveins: $edi38 39 $eax = COPY killed $edi40 RET64 killed $eax41...42