aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-03-23 22:47:43 +0000
committerChris Lattner <sabre@nondot.org>2002-03-23 22:47:43 +0000
commitff9ffa986614d2f847f079a512dd0acf0a66185d (patch)
tree7d0a4b06270ff0fa8b042a333af1b5079ae377c1
parent79cc5bc9126928dfbca70ec1b09843467ff3d399 (diff)
Add transition header file
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1954 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Method.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/llvm/Method.h b/include/llvm/Method.h
new file mode 100644
index 0000000000..80f167c688
--- /dev/null
+++ b/include/llvm/Method.h
@@ -0,0 +1,8 @@
+// TRANSITION HEADER FILE. New code should use Function.h instead of Method.h
+
+#ifndef LLVM_METHOD_H
+#define LLVM_METHOD_H
+
+#include "llvm/Function.h"
+
+#endif