diff options
author | Teresa Johnson <tejohnson@google.com> | 2016-01-21 14:28:52 +0000 |
---|---|---|
committer | Teresa Johnson <tejohnson@google.com> | 2016-01-21 14:28:52 +0000 |
commit | e0373a67967cbe21faac4d95fe436be622a7eb27 (patch) | |
tree | ac16e2df4e1262b35cbe2bab89fc0d50e33bb06e /llvm/tools/llvm-link | |
parent | 7a000f5bb2be477f1b053c315523f274bf0f7ac8 (diff) | |
download | bcm5719-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.cpp | 13 |
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; |