X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FVMCore%2FFunction.cpp;h=75a27781a90a7e1d86933fe54283ba3bb204dd2e;hb=ca24d381e713227094fbc0223d22b3a6e99541ce;hp=0ec64113230441f0e8ea9fe219db52ef7eeaae79;hpb=243f1f73154f1f52858700f4d46eb3d169a2c267;p=oota-llvm.git diff --git a/lib/VMCore/Function.cpp b/lib/VMCore/Function.cpp index 0ec64113230..75a27781a90 100644 --- a/lib/VMCore/Function.cpp +++ b/lib/VMCore/Function.cpp @@ -66,10 +66,6 @@ const Type *Method::getReturnType() const { return ((const MethodType *)getType())->getReturnType(); } -const MethodType *Method::getMethodType() const { - return (const MethodType *)getType(); -} - // dropAllReferences() - This function causes all the subinstructions to "let // go" of all references that they are maintaining. This allows one to // 'delete' a whole class at a time, even though there may be circular @@ -88,9 +84,9 @@ void Method::dropAllReferences() { GlobalVariable::GlobalVariable(const Type *Ty, const string &Name = "") : Value(Ty, Value::GlobalVal, Name), Parent(0) { - assert(Ty->isPointerType() && - (!Ty->isPointerType()->isArrayType() || // No unsized array pointers - Ty->isPointerType()->isArrayType()->isSized()) && + assert(Ty->isPointerType() && // No unsized array pointers + (!Ty->dyncastPointerType()->isArrayType() || + Ty->dyncastPointerType()->dyncastArrayType()->isSized()) && "Global Variables must be pointers to a sized type!"); }