mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
8d1bb37e69
It's not really clear in the spec that these are in Zbp now, but that's what I've gather from previous commits to the spec. I've file an issue to get it documented properly. Reviewed By: asb, frasercrmck Differential Revision: https://reviews.llvm.org/D94652
9 lines
399 B
ArmAsm
9 lines
399 B
ArmAsm
# RUN: not llvm-mc -triple riscv64 -mattr=+experimental-b,experimental-zbb < %s 2>&1 | FileCheck %s
|
|
|
|
# Too many operands
|
|
clzw t0, t1, t2 # CHECK: :[[@LINE]]:14: error: invalid operand for instruction
|
|
# Too many operands
|
|
ctzw t0, t1, t2 # CHECK: :[[@LINE]]:14: error: invalid operand for instruction
|
|
# Too many operands
|
|
cpopw t0, t1, t2 # CHECK: :[[@LINE]]:15: error: invalid operand for instruction
|