Fix bug: test/Regression/Transforms/SCCP/2002-05-03-NotOperator.ll
[oota-llvm.git] / lib / VMCore / iMemory.cpp
index 79c697edc8fbd0440ff5db752d8e9494c191cc80..0a62d1cae069f313e6cfaafad6e0dd28a5fa62d5 100644 (file)
@@ -5,7 +5,8 @@
 //===----------------------------------------------------------------------===//
 
 #include "llvm/iMemory.h"
-#include "llvm/ConstantVals.h"
+#include "llvm/Constants.h"
+#include "llvm/DerivedTypes.h"
 
 static inline const Type *checkType(const Type *Ty) {
   assert(Ty && "Invalid indices for type!");
@@ -32,6 +33,11 @@ bool AllocationInst::isArrayAllocation() const {
          getOperand(0) != ConstantUInt::get(Type::UIntTy, 1);
 }
 
+const Type *AllocationInst::getAllocatedType() const {
+  return getType()->getElementType();
+}
+
+
 //===----------------------------------------------------------------------===//
 //                        MemAccessInst Implementation
 //===----------------------------------------------------------------------===//
@@ -130,3 +136,15 @@ GetElementPtrInst::GetElementPtrInst(Value *Ptr, const std::vector<Value*> &Idx,
   for (unsigned i = 0, E = Idx.size(); i != E; ++i)
     Operands.push_back(Use(Idx[i], this));
 }
+
+
+//===----------------------------------------------------------------------===//
+//                             FreeInst Implementation
+//===----------------------------------------------------------------------===//
+
+FreeInst::FreeInst(Value *Ptr) : Instruction(Type::VoidTy, Free, "") {
+  assert(Ptr->getType()->isPointerType() && "Can't free nonpointer!");
+  Operands.reserve(1);
+  Operands.push_back(Use(Ptr, this));
+}
+