Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / MachineVerifier / test_g_ubfx_sbfx.mir
blob71d2ee0e10c5989146d477ad803ed7fffd838eae
1 # RUN: not --crash llc -mtriple=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 ...