19 lines · plain
1# RUN: llvm-mc -assemble -mcpu=mips64r6 -arch=mips64el -filetype=obj %s -o tmp.o2# RUN: llvm-objdump -d tmp.o | FileCheck %s --check-prefix=MIPSELR63 4# MIPSELR6: 0000000000000000 <aaa>:5# MIPSELR6-NEXT: beqzc $13, 0x0 <aaa>6# MIPSELR6-NEXT: b 0x0 <aaa>7# MIPSELR6: 0000000000000008 <bbb>:8# MIPSELR6-NEXT: beqzc $13, 0x8 <bbb>9# MIPSELR6-NEXT: nop <aaa>10# MIPSELR6: b 0x8 <bbb>11 .set noreorder12aaa:13 beqzc $t1, aaa14 b aaa15 .set reorder16bbb:17 beqzc $t1, bbb18 b bbb19