From b59404280b8219134f376cee30d04c57e03979b6 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 29 Mar 2002 03:32:00 +0000 Subject: [PATCH] Add #define for MethodType git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2025 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Method.h | 4 ++++ 1 file changed, 4 insertions(+) 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