[ARM] Cortex-M4 schedule additions
[llvm-complete.git] / test / CodeGen / MIR / X86 / large-index-number-error.mir
blobd7bf528265c9d623e8f731009ee127e79af13246
1 # RUN: not llc -march=x86-64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
3 --- |
5   define i32 @foo(i32* %p) {
6   entry:
7     %a = load i32, i32* %p
8     %b = icmp sle i32 %a, 10
9     br i1 %b, label %0, label %1
11   ; <label>:0
12     ret i32 0
14   ; <label>:1
15     ret i32 %a
16   }
18 ...
19 ---
20 name:            foo
21 body: |
22   bb.0.entry:
23     $eax = MOV32rm $rdi, 1, _, 0, _
24     CMP32ri8 $eax, 10, implicit-def $eflags
25     ; CHECK: [[@LINE+1]]:11: expected 32-bit integer (too large)
26     JCC_1 %bb.123456789123456, 15, implicit $eflags
28   bb.1:
29     $eax = MOV32r0 implicit-def $eflags
31   bb.2:
32     RETQ $eax
33 ...