mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
a09a70b235
When --section-headers is used, GNU objdump prints both LMA and VMA for sections. llvm-objdump does not do that what makes it's output be slightly inconsistent. Patch teaches llvm-objdump to print LMA/VMA for ELF file formats. The behavior for other formats remains unchanged. Differential revision: https://reviews.llvm.org/D57146 llvm-svn: 352366
7 lines
191 B
Plaintext
7 lines
191 B
Plaintext
; RUN: llvm-objdump -h %p/Inputs/no-sections.elf-x86-64 \
|
|
; RUN: | FileCheck %s
|
|
|
|
; CHECK: Sections:
|
|
; CHECK: Idx Name Size VMA Type
|
|
; CHECK-NOT: {{.}}
|