1# RUN: llvm-mc -filetype=obj -triple=aarch64 %s -o %t 2# RUN: llvm-objdump --no-print-imm-hex -d %t | tr '\t' '|' | FileCheck --match-full-lines --strict-whitespace %s 3 4## Use '|' to show where the tabs line up. 5# CHECK:0000000000000000 <.text>: 6# CHECK-NEXT: 0: 91001062 |add|x2, x3, #4{{$}} 7# CHECK-NEXT: 4: d503201f |nop 8# CHECK-NEXT: 8: ff ff 00 00 |.word|0x0000ffff 9 10 add x2, x3, #4 11 nop 12 .word 0xffff 13