forked from OSchip/llvm-project
[RISCV] Fix bad CHECK prefix in rv32zbkb-valid.s.
"pack t0, t1, zero" disassembles to "pack t0, t1, zero" with Zbkb not "zext.h t0, t1" Part of the test was using a CHECK prefix that doesn't appear on the RUN line.
This commit is contained in:
parent
2f18b02de7
commit
491403c11d
|
@ -32,8 +32,7 @@ orn t0, t1, t2
|
||||||
# CHECK-ASM: encoding: [0xb3,0x42,0x73,0x40]
|
# CHECK-ASM: encoding: [0xb3,0x42,0x73,0x40]
|
||||||
xnor t0, t1, t2
|
xnor t0, t1, t2
|
||||||
|
|
||||||
# CHECK-ASM: pack t0, t1, zero
|
# CHECK-ASM-AND-OBJ: pack t0, t1, zero
|
||||||
# CHECK-OBJ: zext.h t0, t1
|
|
||||||
# CHECK-ASM: encoding: [0xb3,0x42,0x03,0x08]
|
# CHECK-ASM: encoding: [0xb3,0x42,0x03,0x08]
|
||||||
pack t0, t1, x0
|
pack t0, t1, x0
|
||||||
# CHECK-ASM-AND-OBJ: packh t0, t1, t2
|
# CHECK-ASM-AND-OBJ: packh t0, t1, t2
|
||||||
|
|
Loading…
Reference in New Issue