aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/Function.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-09-10 20:11:44 +0000
committerChris Lattner <sabre@nondot.org>2001-09-10 20:11:44 +0000
commitca24d381e713227094fbc0223d22b3a6e99541ce (patch)
tree44a417cd22b3fffad09fe4c7ac3664f13426676b /lib/VMCore/Function.cpp
parent243f1f73154f1f52858700f4d46eb3d169a2c267 (diff)
downloadexternal_llvm-ca24d381e713227094fbc0223d22b3a6e99541ce.zip
external_llvm-ca24d381e713227094fbc0223d22b3a6e99541ce.tar.gz
external_llvm-ca24d381e713227094fbc0223d22b3a6e99541ce.tar.bz2
Use correct style casts
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@545 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Function.cpp')
-rw-r--r--lib/VMCore/Function.cpp10
1 files changed, 3 insertions, 7 deletions
diff --git a/lib/VMCore/Function.cpp b/lib/VMCore/Function.cpp
index 0ec6411..75a2778 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!");
}