[ARM] Cortex-M4 schedule additions
[llvm-complete.git] / test / CodeGen / MIR / X86 / basic-block-not-at-start-of-line-error.mir
blobee10a174fba56b8fff37e713a36acc8283ad2707
1 # RUN: not llc -march=x86-64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
3 --- |
5   define i32 @foo(i32 %a) {
6   entry:
7     %0 = icmp sle i32 %a, 10
8     br i1 %0, label %less, label %exit
10   less:                                             ; preds = %entry
11     ret i32 0
13   exit:                                             ; preds = %entry
14     ret i32 %a
15   }
17 ...
18 ---
19 name:            foo
20 tracksRegLiveness: true
21 liveins:
22   - { reg: '$edi' }
23 body: |
24   bb.0.entry:
25     successors: %bb.1.less, %bb.2.exit
26     liveins: $edi 44
28     CMP32ri8 $edi, 10, implicit-def $eflags
29     JCC_1 %bb.2.exit, 15, implicit killed $eflags
31   ; CHECK: [[@LINE+1]]:8: basic block definition should be located at the start of the line
32   less bb.1:
33     $eax = MOV32r0 implicit-def dead $eflags
34     RETQ killed $eax
36   bb.2.exit:
37     liveins: $edi
39     $eax = COPY killed $edi
40     RETQ killed $eax
41 ...