[PATCH] D104214: [llvm-dlltool] [test] Remove superfluous --coff-exports option to llvm-readobj. NFC.
Martin Storsjö via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 14 03:41:29 PDT 2021
mstorsjo created this revision.
mstorsjo added reviewers: rnk, mati865.
Herald added subscribers: ormris, steven_wu, hiraditya, inglorion.
mstorsjo requested review of this revision.
Herald added a project: LLVM.
The --coff-exports option to llvm-readobj prints the exported symbols
from a DLL/EXE, it doesn't do anything with regards to an import
library.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D104214
Files:
llvm/test/tools/llvm-dlltool/coff-exports.def
Index: llvm/test/tools/llvm-dlltool/coff-exports.def
===================================================================
--- llvm/test/tools/llvm-dlltool/coff-exports.def
+++ llvm/test/tools/llvm-dlltool/coff-exports.def
@@ -1,7 +1,7 @@
; RUN: llvm-dlltool -m i386:x86-64 --input-def %s --output-lib %t.a
-; RUN: llvm-readobj --coff-exports %t.a | FileCheck %s
+; RUN: llvm-readobj %t.a | FileCheck %s
; RUN: llvm-dlltool -m arm64 --input-def %s --output-lib %t.a
-; RUN: llvm-readobj --coff-exports %t.a | FileCheck %s
+; RUN: llvm-readobj %t.a | FileCheck %s
LIBRARY test.dll
EXPORTS
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D104214.351817.patch
Type: text/x-patch
Size: 592 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210614/efe22478/attachment.bin>
More information about the llvm-commits
mailing list