16 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: test5body: |6 bb.0:7 %v1:_(<2 x s64>) = G_IMPLICIT_DEF8 %v2:_(<2 x s64>) = G_IMPLICIT_DEF9 %v3:_(<2 x s64>) = G_IMPLICIT_DEF10 11 ; CHECK: *** Bad machine code: Bitfield extraction is not supported on vectors ***12 %ubfx_vector:_(<2 x s64>) = G_UBFX %v1, %v2, %v313 ; CHECK: *** Bad machine code: Bitfield extraction is not supported on vectors ***14 %sbfx_vector:_(<2 x s64>) = G_SBFX %v1, %v2, %v315...16