mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
c4b48a6a79
It would prevent the display of a single byte instruction before a label. Patch by Steve King! llvm-svn: 215837
11 lines
383 B
Plaintext
11 lines
383 B
Plaintext
RUN: llvm-objdump -d %p/../Inputs/trivial-label-test.elf-x86-64 \
|
|
RUN: | FileCheck %s -check-prefix ELF-x86-64
|
|
|
|
ELF-x86-64: file format ELF64-x86-64
|
|
ELF-x86-64: Disassembly of section .text:
|
|
ELF-x86-64: foo:
|
|
ELF-x86-64: 0: 90 nop
|
|
ELF-x86-64: bum:
|
|
ELF-x86-64: 1: 90 nop
|
|
|