mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
61b28d4f51
Differential Revision: https://reviews.llvm.org/D99383
14 lines
396 B
YAML
14 lines
396 B
YAML
# RUN: not --crash llc -march=arm64 -verify-machineinstrs -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
|
|
# REQUIRES: aarch64-registered-target
|
|
---
|
|
name: test_uniform
|
|
body: |
|
|
bb.0:
|
|
%src:_(<2 x s64>) = G_IMPLICIT_DEF
|
|
%amt:_(s64) = G_IMPLICIT_DEF
|
|
|
|
; CHECK: Rotate requires operands to be either all scalars or all vectors
|
|
%rotr:_(<2 x s64>) = G_ROTR %src, %amt
|
|
|
|
...
|