1 # RUN: not llvm-mc -triple riscv64 < %s 2>&1 | FileCheck %s
3 # Out of range immediates
5 slliw a0
, a0
, 32 # CHECK: :[[@LINE]]:15: error: immediate must be an integer in the range [0, 31]
6 srliw a0
, a0
, -1 # CHECK: :[[@LINE]]:15: error: immediate must be an integer in the range [0, 31]
7 sraiw a0
, a0
, -19 # CHECK: :[[@LINE]]:15: error: immediate must be an integer in the range [0, 31]
10 addiw a0
, a1
, -2049 # CHECK: :[[@LINE]]:15: error: operand must be a symbol with %lo/%pcrel_lo/%tprel_lo modifier or an integer in the range [-2048, 2047]
11 ld ra
, 2048(sp
) # CHECK: :[[@LINE]]:8: error: operand must be a symbol with %lo/%pcrel_lo/%tprel_lo modifier or an integer in the range [-2048, 2047]
13 # Illegal operand modifier
15 slliw a0
, a0
, %lo
(1) # CHECK: :[[@LINE]]:15: error: immediate must be an integer in the range [0, 31]
16 srliw a0
, a0
, %lo
(a) # CHECK: :[[@LINE]]:15: error: immediate must be an integer in the range [0, 31]
17 sraiw a0
, a0
, %hi
(2) # CHECK: :[[@LINE]]:15: error: immediate must be an integer in the range [0, 31]
20 addiw a0
, a1
, %hi
(foo
) # CHECK: :[[@LINE]]:15: error: operand must be a symbol with %lo/%pcrel_lo/%tprel_lo modifier or an integer in the range [-2048, 2047]