1 # RUN: not llvm-mc -triple riscv32 -mattr=+experimental-b,experimental-zbt < %s 2>&1 | FileCheck %s
4 cmix t0
, t1
, t2
# CHECK: :[[@LINE]]:1: error: too few operands for instruction
6 cmov t0
, t1
, t2
# CHECK: :[[@LINE]]:1: error: too few operands for instruction
8 fsl t0
, t1
, t2
# CHECK: :[[@LINE]]:1: error: too few operands for instruction
10 fsr t0
, t1
, t2
# CHECK: :[[@LINE]]:1: error: too few operands for instruction
12 fsri t0
, t1
, t2
# CHECK: :[[@LINE]]:1: error: too few operands for instruction
13 # Immediate operand out of range
14 fsri t0
, t1
, t2
, 32 # CHECK: :[[@LINE]]:18: error: immediate must be an integer in the range [0, 31]
15 fsri t0
, t1
, t2
, -1 # CHECK: :[[@LINE]]:18: error: immediate must be an integer in the range [0, 31]
16 fslw t0
, t1
, t2
, t3
# CHECK: :[[@LINE]]:1: error: instruction requires the following: RV64I Base Instruction Set
17 fsrw t0
, t1
, t2
, t3
# CHECK: :[[@LINE]]:1: error: instruction requires the following: RV64I Base Instruction Set
18 fsriw t0
, t1
, t2
, 0 # CHECK: :[[@LINE]]:1: error: instruction requires the following: RV64I Base Instruction Set