[llvm-commits] [llvm] r97285 - /llvm/trunk/lib/Transforms/IPO/GlobalOpt.cpp
Chris Lattner
sabre at nondot.org
Fri Feb 26 15:42:13 PST 2010
Author: lattner
Date: Fri Feb 26 17:42:13 2010
New Revision: 97285
URL: http://llvm.org/viewvc/llvm-project?rev=97285&view=rev
Log:
Fix rdar://7694996 a miscompile of 183.equake from my patch yesterday,
confusing the old MAT variable with the new GlobalType one. This caused
us to promote the @disp global pointer into:
@disp.body = internal global double*** undef
instead of:
@disp.body = internal global [3 x double**] undef
Modified:
llvm/trunk/lib/Transforms/IPO/GlobalOpt.cpp
Modified: llvm/trunk/lib/Transforms/IPO/GlobalOpt.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/IPO/GlobalOpt.cpp?rev=97285&r1=97284&r2=97285&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/IPO/GlobalOpt.cpp (original)
+++ llvm/trunk/lib/Transforms/IPO/GlobalOpt.cpp Fri Feb 26 17:42:13 2010
@@ -826,11 +826,10 @@
// Create the new global variable. The contents of the malloc'd memory is
// undefined, so initialize with an undef value.
- const Type *MAT = getMallocAllocatedType(CI);
GlobalVariable *NewGV = new GlobalVariable(*GV->getParent(),
- MAT, false,
+ GlobalType, false,
GlobalValue::InternalLinkage,
- UndefValue::get(MAT),
+ UndefValue::get(GlobalType),
GV->getName()+".body",
GV,
GV->isThreadLocal());
More information about the llvm-commits
mailing list