summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-link
diff options
context:
space:
mode:
authorTeresa Johnson <tejohnson@google.com>2016-01-21 14:28:52 +0000
committerTeresa Johnson <tejohnson@google.com>2016-01-21 14:28:52 +0000
commite0373a67967cbe21faac4d95fe436be622a7eb27 (patch)
treeac16e2df4e1262b35cbe2bab89fc0d50e33bb06e /llvm/tools/llvm-link
parent7a000f5bb2be477f1b053c315523f274bf0f7ac8 (diff)
downloadbcm5719-llvm-e0373a67967cbe21faac4d95fe436be622a7eb27.tar.gz
bcm5719-llvm-e0373a67967cbe21faac4d95fe436be622a7eb27.zip
Revert obsolete llvm-link -preserve-modules option/test
This testing mode is now obsolete with the change to linkInModule to take a std::unique_ptr to Module. llvm-svn: 258399
Diffstat (limited to 'llvm/tools/llvm-link')
-rw-r--r--llvm/tools/llvm-link/llvm-link.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/llvm/tools/llvm-link/llvm-link.cpp b/llvm/tools/llvm-link/llvm-link.cpp
index a32383028ae..f179ff20b6f 100644
--- a/llvm/tools/llvm-link/llvm-link.cpp
+++ b/llvm/tools/llvm-link/llvm-link.cpp
@@ -89,10 +89,6 @@ static cl::opt<bool>
SuppressWarnings("suppress-warnings", cl::desc("Suppress all linking warnings"),
cl::init(false));
-static cl::opt<bool>
- PreserveModules("preserve-modules",
- cl::desc("Preserve linked modules for testing"));
-
static cl::opt<bool> PreserveBitcodeUseListOrder(
"preserve-bc-uselistorder",
cl::desc("Preserve use-list order when writing LLVM bitcode."),
@@ -284,15 +280,6 @@ static bool linkFiles(const char *argv0, LLVMContext &Context, Linker &L,
return false;
// All linker flags apply to linking of subsequent files.
ApplicableFlags = Flags;
-
- // If requested for testing, preserve modules by releasing them from
- // the unique_ptr before the are freed. This can help catch any
- // cross-module references from e.g. unneeded metadata references
- // that aren't properly set to null but instead mapped to the source
- // module version. The bitcode writer will assert if it finds any such
- // cross-module references.
- if (PreserveModules)
- M.release();
}
return true;
OpenPOWER on IntegriCloud