[AMDGPU] Add True16 register classes.
[llvm-project.git] / llvm / test / MachineVerifier / test_g_ubfx_sbfx.mir
blob6f177e1d51fa107258d0710917347c9c3cf35bd8
1 # RUN: not --crash llc -march=arm64 -verify-machineinstrs -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
2 # REQUIRES: aarch64-registered-target
4 name:            test
5 body: |
6   bb.0:
7     %v1:_(<2 x s64>) = G_IMPLICIT_DEF
8     %v2:_(<2 x s64>) = G_IMPLICIT_DEF
9     %v3:_(<2 x s64>) = G_IMPLICIT_DEF
11     ; CHECK: *** Bad machine code: Bitfield extraction is not supported on vectors ***
12     %ubfx_vector:_(<2 x s64>) = G_UBFX %v1, %v2, %v3
13     ; CHECK: *** Bad machine code: Bitfield extraction is not supported on vectors ***
14     %sbfx_vector:_(<2 x s64>) = G_SBFX %v1, %v2, %v3
15 ...