mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
1cd17d17bc
`link -dump -exports` lists exported symbols from import libraries as well as normal dlls. Ensure that we can handle import libraries as well in llvm-readobj. llvm-svn: 279069
23 lines
494 B
Plaintext
23 lines
494 B
Plaintext
RUN: llvm-readobj -coff-exports %p/Inputs/library.lib | FileCheck %s
|
|
|
|
CHECK: File: library.dll
|
|
CHECK: Format: COFF-import-file
|
|
CHECK: Type: const
|
|
CHECK: Symbol: __imp__constant
|
|
|
|
CHECK: File: library.dll
|
|
CHECK: Format: COFF-import-file
|
|
CHECK: Type: data
|
|
CHECK: Symbol: __imp__data
|
|
|
|
CHECK: File: library.dll
|
|
CHECK: Format: COFF-import-file
|
|
CHECK: Type: code
|
|
CHECK: Symbol: __imp__function
|
|
|
|
CHECK: File: library.dll
|
|
CHECK: Format: COFF-import-file
|
|
CHECK: Type: code
|
|
CHECK: Symbol: __imp__ordinal
|
|
|