Summary: rL371826 rearranged some output from llvm-objdump for GNU objdump compatability, but there still seem to be some more. I think this rearrangement is a little closer. Overview of the ordering which matches GNU objdump: * Archive headers * File headers * Section headers * Symbol table * Dwarf debugging * Relocations (if `--disassemble` is not used) * Section contents * Disassembly Reviewers: jhenderson, justice_adams, grimar, ychen, espindola Reviewed By: jhenderson Subscribers: aprantl, emaste, arichardson, jrtc27, atanasyan, seiya, llvm-commits, MaskRay Tags: #llvm Differential Revision: https://reviews.llvm.org/D68066 llvm-svn: 373671
24 lines
634 B
ArmAsm
24 lines
634 B
ArmAsm
# REQUIRES: mips
|
|
# Check reading addends for relocations in non-allocatable sections.
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux %s -o %t1.o
|
|
# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux \
|
|
# RUN: %S/Inputs/mips-nonalloc.s -o %t2.o
|
|
# RUN: ld.lld %t1.o %t2.o -o %t.exe
|
|
# RUN: llvm-objdump -t -s %t.exe | FileCheck %s
|
|
|
|
# CHECK: [[SYM:[0-9a-f]+]] .text 00000000 __start
|
|
|
|
# CHECK: Contents of section .debug_info:
|
|
# CHECK-NEXT: 0000 ffffffff [[SYM]] [[SYM]]
|
|
# ^-------^-- __start
|
|
|
|
|
|
.global __start
|
|
__start:
|
|
nop
|
|
|
|
.section .debug_info
|
|
.word 0xffffffff
|
|
.word __start
|