From 37f59419b8680fd1814e71387c8354ad64bd670b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 22 Apr 2003 18:02:26 +0000 Subject: [PATCH] Preserve the new moduleID field git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5835 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Utils/CloneModule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.34.1