[llvm-commits] CVS: llvm/lib/Transforms/IPO/IndMemRemoval.cpp
Reid Spencer
reid at x10sys.com
Fri Jan 19 13:14:32 PST 2007
Changes in directory llvm/lib/Transforms/IPO:
IndMemRemoval.cpp updated: 1.10 -> 1.11
---
Log message:
For PR1043: http://llvm.org/PR1043 :
This is the final patch for this PR. It implements some minor cleanup
in the use of IntegerType, to wit:
1. Type::getIntegerTypeMask -> IntegerType::getBitMask
2. Type::Int*Ty changed to IntegerType* from Type*
3. ConstantInt::getType() returns IntegerType* now, not Type*
This also fixes PR1120: http://llvm.org/PR1120 .
Patch by Sheng Zhou.
---
Diffs of the changes: (+1 -0)
IndMemRemoval.cpp | 1 +
1 files changed, 1 insertion(+)
Index: llvm/lib/Transforms/IPO/IndMemRemoval.cpp
diff -u llvm/lib/Transforms/IPO/IndMemRemoval.cpp:1.10 llvm/lib/Transforms/IPO/IndMemRemoval.cpp:1.11
--- llvm/lib/Transforms/IPO/IndMemRemoval.cpp:1.10 Sat Dec 30 23:48:39 2006
+++ llvm/lib/Transforms/IPO/IndMemRemoval.cpp Fri Jan 19 15:13:56 2007
@@ -21,6 +21,7 @@
#include "llvm/Module.h"
#include "llvm/Instructions.h"
#include "llvm/Type.h"
+#include "llvm/DerivedTypes.h"
#include "llvm/ADT/Statistic.h"
using namespace llvm;
More information about the llvm-commits
mailing list