[ARM] Split large truncating MVE stores
[llvm-complete.git] / test / CodeGen / MIR / X86 / duplicate-register-flag-error.mir
blobb43dd2689b290c83539fa86dd1712fc19459a624
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:
11     ret i32 0
13   exit:
14     ret i32 %a
15   }
17 ...
18 ---
19 name:            foo
20 body: |
21   bb.0.entry:
22     successors: %bb.1.less, %bb.2.exit
24     CMP32ri8 $edi, 10, implicit-def $eflags
25   ; CHECK: [[@LINE+1]]:36: duplicate 'implicit' register flag
26     JCC_1 %bb.2.exit, 15, implicit implicit $eflags
28   bb.1.less:
29     $eax = MOV32r0 implicit-def $eflags
30     RETQ $eax
32   bb.2.exit:
33     $eax = COPY $edi
34     RETQ $eax
35 ...