[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / tools / llvm-objdump / X86 / disassemble-text.test
blob54de47b208d815ab8fdb028da174e77d6ce5cc6a
1 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o -| \
2 # RUN: llvm-objdump -d - | FileCheck %s
4 .globl foo
5 .type foo, @object
6 foo:
7 .ascii "this is a test"
9 # CHECK: <foo>:
10 # CHECK: 0:{{.*}}this is
11 # CHECK: 8:{{.*}}a test