Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / MachineVerifier / test_g_ptr_add.mir
blob07fe6266701d5c7df50b4aee3a6cd062ce689d81
1 #RUN: not --crash llc -o - -mtriple=arm64 -run-pass=none -verify-machineinstrs %s 2>&1 | FileCheck %s
2 # REQUIRES: aarch64-registered-target
4 ---
5 name:            test_gep
6 legalized:       true
7 regBankSelected: false
8 selected:        false
9 tracksRegLiveness: true
10 liveins:
11 body:             |
12   bb.0:
14     %0:_(p0) = G_IMPLICIT_DEF
15     %1:_(s64) = G_IMPLICIT_DEF
17     ; CHECK:  Bad machine code: Type mismatch in generic instruction
18     %2:_(s64) = G_PTR_ADD %0, %1
20     ; CHECK:  Bad machine code: Type mismatch in generic instruction
21     %3:_(p0) = G_PTR_ADD %1, %1
23     ; CHECK: Bad machine code: gep offset operand must not be a pointer
24     %4:_(p0) = G_PTR_ADD %0, %0
26     ; CHECK: Bad machine code: Type mismatch in generic instruction
27     %5:_(p1) = G_PTR_ADD %0, %1
29     ; CHECK: Bad machine code: gep first operand must be a pointer
30     %6:_(s64) = G_PTR_ADD %1, %1
32 ...