diff options
| author | Chris Lattner <sabre@nondot.org> | 2002-04-29 18:46:50 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2002-04-29 18:46:50 +0000 |
| commit | 913d18f567a50f21e4f60788f9dd571e46b9b142 (patch) | |
| tree | 984ebc073484129beb9ce3ead4391bc6bdcb24db /llvm/lib | |
| parent | df159af353b284c3143ceade424a06663082799d (diff) | |
| download | bcm5719-llvm-913d18f567a50f21e4f60788f9dd571e46b9b142.tar.gz bcm5719-llvm-913d18f567a50f21e4f60788f9dd571e46b9b142.zip | |
Changes so that iMemory.h doesn't include DerivedTypes.h
llvm-svn: 2404
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/VMCore/AsmWriter.cpp | 1 | ||||
| -rw-r--r-- | llvm/lib/VMCore/iMemory.cpp | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/llvm/lib/VMCore/AsmWriter.cpp b/llvm/lib/VMCore/AsmWriter.cpp index 8e5de342561..90ce6ba5175 100644 --- a/llvm/lib/VMCore/AsmWriter.cpp +++ b/llvm/lib/VMCore/AsmWriter.cpp @@ -11,6 +11,7 @@ #include "llvm/Assembly/CachedWriter.h" #include "llvm/Assembly/Writer.h" #include "llvm/SlotCalculator.h" +#include "llvm/DerivedTypes.h" #include "llvm/Module.h" #include "llvm/Function.h" #include "llvm/GlobalVariable.h" diff --git a/llvm/lib/VMCore/iMemory.cpp b/llvm/lib/VMCore/iMemory.cpp index 09d9d156bf6..0a62d1cae06 100644 --- a/llvm/lib/VMCore/iMemory.cpp +++ b/llvm/lib/VMCore/iMemory.cpp @@ -6,6 +6,7 @@ #include "llvm/iMemory.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)); +} + |

