[ARM] Split large truncating MVE stores
[llvm-complete.git] / test / CodeGen / MIR / X86 / invalid-constant-pool-item.mir
blob45c0b813acb5c8d981a0bb8a3d804430d510777b
1 # RUN: not llc -march=x86-64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
2 # This test ensures that the MIR parser reports an error when parsing an invalid
3 # constant pool item operand.
5 --- |
7   define double @test(double %a, float %b) {
8   entry:
9     %c = fadd double %a, 3.250000e+00
10     ret double %c
11   }
13 ...
14 ---
15 name:            test
16 constants:
17   - id:          0
18     value:       'double 3.250000e+00'
19 body: |
20   bb.0.entry:
21     ; CHECK: [[@LINE+1]]:47: use of undefined constant '%const.10'
22     $xmm0 = ADDSDrm killed $xmm0, $rip, 1, _, %const.10, _
23     RETQ $xmm0
24 ...