28 lines · plain
1# RUN: not --crash llc -o - -mtriple=arm64 -run-pass=none -verify-machineinstrs %s 2>&1 | FileCheck %s2# REQUIRES: aarch64-registered-target3---4name: g_splat_vector5tracksRegLiveness: true6liveins:7body: |8 bb.0:9 %0:_(s32) = G_CONSTANT i32 010 %1:_(<2 x s32>) = G_IMPLICIT_DEF11 %2:_(<vscale x 2 x s32>) = G_IMPLICIT_DEF12 13 ; CHECK: Destination type must be a scalable vector14 %3:_(s32) = G_SPLAT_VECTOR %015 16 ; CHECK: Destination type must be a scalable vector17 %4:_(<2 x s32>) = G_SPLAT_VECTOR %018 19 ; CHECK: Source type must be a scalar or pointer20 %5:_(<vscale x 2 x s32>) = G_SPLAT_VECTOR %121 22 ; CHECK: Source type must be a scalar or pointer23 %6:_(<vscale x 2 x s32>) = G_SPLAT_VECTOR %224 25 ; CHECK: Element type of the destination must be the same size or smaller than the source type26 %7:_(<vscale x 2 x s128>) = G_SPLAT_VECTOR %027...28