xref: /llvm-project/llvm/test/tools/llvm-objdump/ELF/AArch64/disassemble-align.s (revision 9ea44c6894270546d6d88ef0d3abcf1e1876acae)
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