mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 14:46:53 +00:00
b19a485253
This enhances llvm-readobj to print out the COFF export table, similar to the -coff-import option. This is useful for testing in lld. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225120 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
493 B
Plaintext
12 lines
493 B
Plaintext
RUN: llvm-readobj -coff-exports %p/Inputs/export-x86.dll | FileCheck %s -check-prefix CHECK -check-prefix CHECK-X86
|
|
RUN: llvm-readobj -coff-exports %p/Inputs/export-x64.dll | FileCheck %s -check-prefix CHECK -check-prefix CHECK-X64
|
|
RUN: llvm-readobj -coff-exports %p/Inputs/export-arm.dll | FileCheck %s -check-prefix CHECK -check-prefix CHECK-ARM
|
|
|
|
CHECK: Export {
|
|
CHECK: Ordinal: 1
|
|
CHECK: Name: function
|
|
CHECK-X86: RVA: 0x1000
|
|
CHECK-X64: RVA: 0x1000
|
|
CHECK-ARM: RVA: 0x1001
|
|
CHECK: }
|