[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / tools / llvm-objdump / X86 / disassemble-code-data-mix.s
blob08c61ca51bcaa9de0385a50e678ee2eaa4086a74
1 // RUN: llvm-mc %s -filetype=obj -triple=x86_64-pc-linux | llvm-objdump -d - | FileCheck --strict-whitespace --match-full-lines %s
2 .text
3 .globl foo
4 .type foo, @function
5 foo:
6 pushq %rbp
7 movq %rsp, %rbp
8 movl $0, %eax
9 popq %rbp
10 ret
12 .globl bar
13 .type bar, @object
14 bar:
15 .string "test string"
17 // CHECK: b: 74 65 73 74 20 73 74 72 test str
18 // CHECK-NEXT: 13: 69 6e 67 00 ing.