Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / MachineVerifier / test_g_shift.mir
blob48661314a41f7758a31fefce416b93d4133d5601
1 # RUN: not --crash llc -mtriple=arm64 -verify-machineinstrs -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
2 # REQUIRES: aarch64-registered-target
4 ---
5 name: test_shift
6 body: |
7   bb.0:
8     %s32:_(s32) = G_IMPLICIT_DEF
9     %v2s32:_(<2 x s32>) = G_IMPLICIT_DEF
10     %s64:_(s64) = G_IMPLICIT_DEF
11     %v2s64:_(<2 x s64>) = G_IMPLICIT_DEF
13     ; CHECK: Shifts and rotates require operands to be either all scalars or all vectors
14     %shl:_(<2 x s64>) = G_SHL %v2s64, %s64
16     ; CHECK: Shifts and rotates require operands to be either all scalars or all vectors
17     %lshr:_(s32) = G_LSHR %s32, %v2s32
19     ; CHECK: Shifts and rotates require operands to be either all scalars or all vectors
20     %ashr:_(<2 x s32>) = G_ASHR %v2s32, %s64
21 ...