[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / MIR / X86 / expected-subregister-after-colon.mir
blobc06e4601480aedec73dba4afa369ab5ea88202fe
1 # RUN: not llc -march=x86-64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
3 --- |
5   define zeroext i1 @t(i1 %c) {
6   entry:
7     ret i1 %c
8   }
10 ...
11 ---
12 name:            t
13 tracksRegLiveness: true
14 registers:
15   - { id: 0, class: gr32 }
16   - { id: 1, class: gr8 }
17   - { id: 2, class: gr8 }
18 body: |
19   bb.0.entry:
20     %0 = COPY $edi
21     ; CHECK: [[@LINE+1]]:20: expected a subregister index after '.'
22     %1 = COPY %0 . 42
23     %2 = AND8ri %1, 1, implicit-def $eflags
24     $al = COPY %2
25     RETQ $al
26 ...