14 lines · plain
1# RUN: not --crash llc -mtriple=arm64 -verify-machineinstrs -run-pass none -o /dev/null %s 2>&1 | FileCheck %s2# REQUIRES: aarch64-registered-target3---4name: test_uniform5body: |6 bb.0:7 %src:_(<2 x s64>) = G_IMPLICIT_DEF8 %amt:_(s64) = G_IMPLICIT_DEF9 10 ; CHECK: Shifts and rotates require operands to be either all scalars or all vectors11 %rotr:_(<2 x s64>) = G_ROTR %src, %amt12 13...14