mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
fca6931aa5
This enhances llvm-readobj to print out the COFF export table, similar to the -coff-import option. This is useful for testing in lld. llvm-svn: 225120
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: }
|