Follow-up for D74433 What the function returns are almost standard BFD names, except that "ELF" is in uppercase instead of lowercase. This patch changes "ELF" to "elf" and changes ARM/AArch64 to use their BFD names. MIPS and PPC64 have endianness differences as well, but this patch does not intend to address them. Advantages: * llvm-objdump: the "file format " line matches GNU objdump on ARM/AArch64 objects * "file format " line can be extracted and fed into llvm-objcopy -O literally. (https://github.com/ClangBuiltLinux/linux/issues/779 has such a use case) Affected tools: llvm-readobj, llvm-objdump, llvm-dwarfdump, MCJIT (internal implementation detail, not exposed) Reviewed By: jhenderson Differential Revision: https://reviews.llvm.org/D76046
34 lines
879 B
LLVM
34 lines
879 B
LLVM
; REQUIRES: x86
|
|
|
|
; RUN: opt -module-summary %s -o %t1.o
|
|
; RUN: opt -module-summary %p/Inputs/obj-path.ll -o %t2.o
|
|
|
|
; Test to ensure that obj-path creates the ELF file.
|
|
; RUN: rm -f %t4.o
|
|
; RUN: ld.lld --plugin-opt=obj-path=%t4.o -shared %t1.o %t2.o -o %t3
|
|
; RUN: llvm-nm %t3 | FileCheck %s
|
|
; RUN: llvm-readobj -h %t4.o1 | FileCheck %s -check-prefix=ELF1
|
|
; RUN: llvm-readobj -h %t4.o2 | FileCheck %s -check-prefix=ELF2
|
|
; RUN: llvm-nm %t4.o1 2>&1 | FileCheck %s -check-prefix=NM1
|
|
; RUN: llvm-nm %t4.o2 2>&1 | FileCheck %s -check-prefix=NM2
|
|
|
|
; CHECK: T f
|
|
; CHECK-NEXT: T g
|
|
|
|
; NM1: T f
|
|
; ELF1: Format: elf64-x86-64
|
|
|
|
; NM2: T g
|
|
; ELF2: Format: elf64-x86-64
|
|
|
|
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
declare void @g(...)
|
|
|
|
define void @f() {
|
|
entry:
|
|
call void (...) @g()
|
|
ret void
|
|
}
|