[PATCH] D28913: ThinLTOBitcodeWriter: Strip debug info from merged module.

Mehdi AMINI via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 27 13:41:30 PST 2017


mehdi_amini added a comment.

(Sorry didn't hit send last week)



================
Comment at: llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp:265
   std::unique_ptr<Module> MergedM(CloneModule(&M, VMap, IsInMergedM));
+  StripDebugInfo(*MergedM);
 
----------------
Debug info is costly to manipulate, can't we have a flag on CloneModule that just ignores them in the first place?


https://reviews.llvm.org/D28913





More information about the llvm-commits mailing list