• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# RUN: not llvm-mc -triple riscv64 -mattr=+experimental-b,experimental-zbt < %s 2>&1 | FileCheck %s
2
3# Too few operands
4fslw t0, t1, t2 # CHECK: :[[@LINE]]:1: error: too few operands for instruction
5# Too few operands
6fsrw t0, t1, t2 # CHECK: :[[@LINE]]:1: error: too few operands for instruction
7# Immediate operand out of range
8fsriw t0, t1, t2, 32 # CHECK: :[[@LINE]]:19: error: immediate must be an integer in the range [0, 31]
9fsriw t0, t1, t2, -1 # CHECK: :[[@LINE]]:19: error: immediate must be an integer in the range [0, 31]
10