15 lines · plain
1@ RUN: llvm-mc -triple=armv7-apple-darwin -show-encoding < %s | FileCheck %s2 .syntax unified3bar:4@ The line is duplicated on purpose, it is legal to redefine a req with5@ the same value.6fred .req r57fred .req r58 mov r11, fred9.unreq fred10fred .req r611 mov r1, fred12 13@ CHECK: mov r11, r5 @ encoding: [0x05,0xb0,0xa0,0xe1]14@ CHECK: mov r1, r6 @ encoding: [0x06,0x10,0xa0,0xe1]15