diff options
Diffstat (limited to 'llvm/test/MC/RISCV/rv32m-invalid.s')
-rw-r--r-- | llvm/test/MC/RISCV/rv32m-invalid.s | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/test/MC/RISCV/rv32m-invalid.s b/llvm/test/MC/RISCV/rv32m-invalid.s index 5e268e8b916..e8532626ee6 100644 --- a/llvm/test/MC/RISCV/rv32m-invalid.s +++ b/llvm/test/MC/RISCV/rv32m-invalid.s @@ -1,9 +1,9 @@ # RUN: not llvm-mc -triple riscv32 -mattr=+m < %s 2>&1 | FileCheck %s # RV64M instructions can't be used for RV32 -mulw ra, sp, gp # CHECK: :[[@LINE]]:1: error: instruction use requires an option to be enabled -divw tp, t0, t1 # CHECK: :[[@LINE]]:1: error: instruction use requires an option to be enabled -divuw t2, s0, s2 # CHECK: :[[@LINE]]:1: error: instruction use requires an option to be enabled -remw a0, a1, a2 # CHECK: :[[@LINE]]:1: error: instruction use requires an option to be enabled -remuw a3, a4, a5 # CHECK: :[[@LINE]]:1: error: instruction use requires an option to be enabled +mulw ra, sp, gp # CHECK: :[[@LINE]]:1: error: instruction requires the following: RV64I Base Instruction Set +divw tp, t0, t1 # CHECK: :[[@LINE]]:1: error: instruction requires the following: RV64I Base Instruction Set +divuw t2, s0, s2 # CHECK: :[[@LINE]]:1: error: instruction requires the following: RV64I Base Instruction Set +remw a0, a1, a2 # CHECK: :[[@LINE]]:1: error: instruction requires the following: RV64I Base Instruction Set +remuw a3, a4, a5 # CHECK: :[[@LINE]]:1: error: instruction requires the following: RV64I Base Instruction Set |