You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
395 B
14 lines
395 B
# 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
|