The code that cleans up multiple, isomorphic types has a subtle error that
authorBill Wendling <isanbard@gmail.com>
Mon, 27 Feb 2012 22:34:19 +0000 (22:34 +0000)
committerBill Wendling <isanbard@gmail.com>
Mon, 27 Feb 2012 22:34:19 +0000 (22:34 +0000)
manifests itself when building LLVM with LTO.
<rdar://problem/10913281>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151576 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Linker/LinkModules.cpp

index 400380926f6f18b9ac48dcad6d46a5cfd1187b85..59c9d7016bf7352f641559e873206bd042ab8d45 100644 (file)
@@ -580,7 +580,11 @@ void ModuleLinker::computeTypeMapping() {
     if (GlobalValue *DGV = getLinkedToGlobal(I))
       TypeMap.addTypeMapping(DGV->getType(), I->getType());
   }
-  
+
+#if 0
+  // FIXME: This doesn't play well with LTO. We cannot compile LLVM with this
+  //        enabled. <rdar://problem/10913281>.
+
   // Incorporate types by name, scanning all the types in the source module.
   // At this point, the destination module may have a type "%foo = { i32 }" for
   // example.  When the source module got loaded into the same LLVMContext, if
@@ -610,8 +614,8 @@ void ModuleLinker::computeTypeMapping() {
       if (!SrcStructTypesSet.count(DST))
         TypeMap.addTypeMapping(DST, ST);
   }
-  
-  
+#endif
+
   // Don't bother incorporating aliases, they aren't generally typed well.
   
   // Now that we have discovered all of the type equivalences, get a body for