1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 20:23:11 +01:00
llvm-mirror/test/MC/Mips/micromips-neg-offset.s
Fangrui Song 1c1cc1c5ed [test] llvm/test/: change llvm-objdump single-dash long options to double-dash options
As announced here: http://lists.llvm.org/pipermail/llvm-dev/2019-April/131786.html

Grouped option syntax (POSIX Utility Conventions) does not play well with -long-option
A subsequent change will reject -long-option.
2020-03-15 17:46:23 -07:00

14 lines
395 B
ArmAsm

# Check decoding beqz instruction with a negative offset
# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux \
# RUN: -mattr=micromips -mcpu=mips32r6 %s -o - \
# RUN: | llvm-objdump -d --mattr=micromips - | FileCheck %s
# CHECK: 0: 8f 7e beqzc16 $6, -4
# CHECK: 2: cf fe bc16 -4
# CHECK: 4: b7 ff ff fe balc -4
beqz16 $6, -4
b16 -4
balc -4