Make the llvm mangler depend only on DataLayout.
[oota-llvm.git] / lib / Target / X86 / X86TargetMachine.cpp
index 773d702a6b7c753c5482f3648c62e85860a4c718..9fa2481a25eea37be4923750f18ea19cf8f1b1b2 100644 (file)
@@ -34,6 +34,7 @@ static std::string computeDataLayout(const X86Subtarget &ST) {
   // X86 is little endian
   std::string Ret = "e";
 
+  Ret += DataLayout::getManglingComponent(ST.getTargetTriple());
   // X86 and x32 have 32 bit pointers.
   if (ST.isTarget64BitILP32() || !ST.is64Bit())
     Ret += "-p:32:32";