1# RUN: llvm-mc %s -triple=riscv64 -mattr=+m -riscv-no-aliases -show-encoding \ 2# RUN: | FileCheck -check-prefixes=CHECK,CHECK-INST %s 3# RUN: llvm-mc -filetype=obj -triple riscv64 -mattr=+m < %s \ 4# RUN: | llvm-objdump -mattr=+m -riscv-no-aliases -d - \ 5# RUN: | FileCheck -check-prefix=CHECK-INST %s 6 7# CHECK-INST: mulw ra, sp, gp 8# CHECK: encoding: [0xbb,0x00,0x31,0x02] 9mulw ra, sp, gp 10# CHECK-INST: divw tp, t0, t1 11# CHECK: encoding: [0x3b,0xc2,0x62,0x02] 12divw tp, t0, t1 13# CHECK-INST: divuw t2, s0, s2 14# CHECK: encoding: [0xbb,0x53,0x24,0x03] 15divuw t2, s0, s2 16# CHECK-INST: remw a0, a1, a2 17# CHECK: encoding: [0x3b,0xe5,0xc5,0x02] 18remw a0, a1, a2 19# CHECK-INST: remuw a3, a4, a5 20# CHECK: encoding: [0xbb,0x76,0xf7,0x02] 21remuw a3, a4, a5 22