blob: 2bb0e8ea1a7e08a7d029b155c1b56c52dd1af745 [file] [log] [blame] [edit]
# RUN: not --crash llc -mtriple=aarch64 -run-pass=none -filetype=null %s 2>&1 | FileCheck %s
# REQUIRES: aarch64-registered-target
---
name: g_vscale
body: |
bb.0:
%1:_(s32) = G_CONSTANT i32 4
; CHECK: G_VSCALE operand must be cimm
%2:_(s32) = G_VSCALE %1
; CHECK: G_VSCALE immediate cannot be zero
%3:_(s32) = G_VSCALE i32 0
...