diff options
Diffstat (limited to 'include/llvm/Transforms/FunctionInlining.h')
-rw-r--r-- | include/llvm/Transforms/FunctionInlining.h | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/include/llvm/Transforms/FunctionInlining.h b/include/llvm/Transforms/FunctionInlining.h index 252489749e..e321df52f7 100644 --- a/include/llvm/Transforms/FunctionInlining.h +++ b/include/llvm/Transforms/FunctionInlining.h @@ -4,23 +4,14 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_OPT_METHOD_INLINING_H -#define LLVM_OPT_METHOD_INLINING_H +#ifndef LLVM_TRANSFORMS_METHOD_INLINING_H +#define LLVM_TRANSFORMS_METHOD_INLINING_H -#include "llvm/Pass.h" #include "llvm/BasicBlock.h" class CallInst; +class Pass; -struct MethodInlining : public MethodPass { - // DoMethodInlining - Use a heuristic based approach to inline methods that - // seem to look good. - // - static bool doMethodInlining(Method *M); - - virtual bool runOnMethod(Method *M) { - return doMethodInlining(M); - } -}; +Pass *createMethodInliningPass(); // InlineMethod - This function forcibly inlines the called method into the // basic block of the caller. This returns true if it is not possible to inline |