From: Chris Lattner Date: Fri, 29 Mar 2002 03:32:00 +0000 (+0000) Subject: Add #define for MethodType X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b59404280b8219134f376cee30d04c57e03979b6;p=oota-llvm.git Add #define for MethodType git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2025 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Method.h b/include/llvm/Method.h index 80f167c688e..83a84fbf2d9 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