From: Chris Lattner Date: Tue, 22 Apr 2003 18:02:26 +0000 (+0000) Subject: Preserve the new moduleID field X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=37f59419b8680fd1814e71387c8354ad64bd670b;p=oota-llvm.git Preserve the new moduleID field git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5835 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Utils/CloneModule.cpp b/lib/Transforms/Utils/CloneModule.cpp index 223e3fd88cd..116ae0d4f3f 100644 --- a/lib/Transforms/Utils/CloneModule.cpp +++ b/lib/Transforms/Utils/CloneModule.cpp @@ -18,7 +18,7 @@ /// Module *CloneModule(const Module *M) { // First off, we need to create the new module... - Module *New = new Module(); + Module *New = new Module(M->getModuleIdentifier()); // Create the value map that maps things from the old module over to the new // module.