xref: /llvm-project/llvm/test/tools/llvm-objdump/X86/disassemble-text.test (revision 71e2ca6e32105b35aeadeab25010e8f999c47c23)
1# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o -| \
2# RUN: llvm-objdump -d - | FileCheck %s
3
4.globl foo
5.type foo, @object
6foo:
7.ascii "this is a test"
8
9# CHECK: <foo>:
10# CHECK: 0:{{.*}}this is
11# CHECK: 8:{{.*}}a test
12