xref: /llvm-project/llvm/test/MachineVerifier/test_g_shift.mir (revision d20190e68413634b87f0f9426312a0e9d8456d18)
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
3
4---
5name: test_shift
6body: |
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
12
13    ; CHECK: Shifts and rotates require operands to be either all scalars or all vectors
14    %shl:_(<2 x s64>) = G_SHL %v2s64, %s64
15
16    ; CHECK: Shifts and rotates require operands to be either all scalars or all vectors
17    %lshr:_(s32) = G_LSHR %s32, %v2s32
18
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...
22