aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-03-29 03:32:00 +0000
committerChris Lattner <sabre@nondot.org>2002-03-29 03:32:00 +0000
commitb59404280b8219134f376cee30d04c57e03979b6 (patch)
tree3395e6574e478a7aec47e6bc0da60c6f2c2d6911 /include
parent0edcc41253410eb3bdafa8e341704f4be5bef552 (diff)
downloadexternal_llvm-b59404280b8219134f376cee30d04c57e03979b6.zip
external_llvm-b59404280b8219134f376cee30d04c57e03979b6.tar.gz
external_llvm-b59404280b8219134f376cee30d04c57e03979b6.tar.bz2
Add #define for MethodType
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2025 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Method.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/Method.h b/include/llvm/Method.h
index 80f167c..83a84fb 100644
--- a/include/llvm/Method.h
+++ b/include/llvm/Method.h
@@ -3,6 +3,10 @@
#ifndef LLVM_METHOD_H
#define LLVM_METHOD_H
+#ifndef MethodType
+#define MethodType FunctionType
+#endif
+
#include "llvm/Function.h"
#endif