aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-03-26 17:46:41 +0000
committerChris Lattner <sabre@nondot.org>2002-03-26 17:46:41 +0000
commit7797946c5ee036a7edf932c156e496742a289221 (patch)
tree8e0801c7c0d49b4faabd95096610ac2c07ac7e8c
parent12bcf84e53417d784b22103bfaed8d5170245edd (diff)
downloadexternal_llvm-7797946c5ee036a7edf932c156e496742a289221.zip
external_llvm-7797946c5ee036a7edf932c156e496742a289221.tar.gz
external_llvm-7797946c5ee036a7edf932c156e496742a289221.tar.bz2
Allow clients to use FunctionType as well as MethodType for now
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1985 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/DerivedTypes.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/DerivedTypes.h b/include/llvm/DerivedTypes.h
index 10ff57b..dfadaf5 100644
--- a/include/llvm/DerivedTypes.h
+++ b/include/llvm/DerivedTypes.h
@@ -145,6 +145,8 @@ public:
}
};
+// TODO: FIXME
+#define FunctionType MethodType
// CompositeType - Common super class of ArrayType, StructType, and PointerType
//