[InstCombine] Signed saturation patterns
[llvm-core.git] / test / MachineVerifier / test_g_inttoptr.mir
blob2769c66c8cc72ef347da5f6b0786d84c8092f30a
1 #RUN: not llc -o - -march=arm64 -run-pass=none -verify-machineinstrs %s 2>&1 | FileCheck %s
2 # REQUIRES: global-isel, aarch64-registered-target
4 ---
5 name:            test_inttoptr
6 legalized:       true
7 regBankSelected: false
8 selected:        false
9 tracksRegLiveness: true
10 liveins:
11 body:             |
12   bb.0:
14     %0:_(s64) = G_IMPLICIT_DEF
15     %1:_(p0) = G_IMPLICIT_DEF
16     %2:_(<2 x s64>) = G_IMPLICIT_DEF
17     %3:_(<2 x p0>) = G_IMPLICIT_DEF
19     ; CHECK: Bad machine code: Too few operands
20     %4:_(p0) = G_INTTOPTR
22     ; CHECK: Bad machine code: Too few operands
23     ; CHECK: Bad machine code: Explicit definition marked as use
24     G_INTTOPTR %0
26     ; CHECK: Bad machine code: inttoptr result type must be a pointer
27     %5:_(s64) = G_INTTOPTR %0
29     ; CHECK: Bad machine code: inttoptr result type must be a pointer
30     %6:_(<2 x s64>) = G_INTTOPTR %2
32     ; CHECK: Bad machine code: operand types must be all-vector or all-scalar
33     %7:_(<2 x p0>) = G_INTTOPTR %0
35     ; CHECK: Bad machine code: operand types must be all-vector or all-scalar
36     %8:_(p0) = G_INTTOPTR %2
38     ; CHECK: Bad machine code: operand types must preserve number of vector elements
39     %9:_(<4 x p0>) = G_INTTOPTR %2
41     ; CHECK: Bad machine code: operand types must preserve number of vector elements
42     %10:_(<4 x s64>) = G_IMPLICIT_DEF
43     %11:_(<2 x p0>) = G_INTTOPTR %10
45 ...