1 2 3 4 5 6 7 8 9 10 11 12 13
|
# RUN: not llvm-mc -triple=riscv32 -mattr=+zcmt -M no-aliases -show-encoding < %s 2>&1 \
# RUN: | FileCheck -check-prefixes=CHECK-ERROR %s
# RUN: not llvm-mc -triple=riscv64 -mattr=+zcmt -M no-aliases -show-encoding < %s 2>&1 \
# RUN: | FileCheck -check-prefixes=CHECK-ERROR %s
# CHECK-ERROR: error: immediate must be an integer in the range [0, 31]
cm.jt 64
# CHECK-ERROR: error: immediate must be an integer in the range [32, 255]
cm.jalt 256
# CHECK-ERROR: error: immediate must be an integer in the range [32, 255]
cm.jalt 31
|