10 lines · plain
1# RUN: not llvm-mc -triple riscv32 -mattr=+xtheadcondmov < %s 2>&1 | FileCheck %s2# RUN: not llvm-mc -triple riscv64 -mattr=+xtheadcondmov < %s 2>&1 | FileCheck %s3 4th.mveqz a0,a1 # CHECK: :[[@LINE]]:1: error: too few operands for instruction5th.mveqz a0,a1,a2,a3 # CHECK: :[[@LINE]]:19: error: invalid operand for instruction6th.mveqz a0,a1,1 # CHECK: :[[@LINE]]:16: error: invalid operand for instruction7th.mvnez a0,a1 # CHECK: :[[@LINE]]:1: error: too few operands for instruction8th.mvnez a0,a1,a2,a3 # CHECK: :[[@LINE]]:19: error: invalid operand for instruction9th.mvnez a0,a1,1 # CHECK: :[[@LINE]]:16: error: invalid operand for instruction10