1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 20:23:11 +01:00
llvm-mirror/include/llvm/Method.h
Chris Lattner 0cc345f1d3 Add #define for MethodType
llvm-svn: 2025
2002-03-29 03:32:00 +00:00

13 lines
219 B
C

// TRANSITION HEADER FILE. New code should use Function.h instead of Method.h
#ifndef LLVM_METHOD_H
#define LLVM_METHOD_H
#ifndef MethodType
#define MethodType FunctionType
#endif
#include "llvm/Function.h"
#endif