summaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/InlineSimple.cpp
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2007-06-19 22:29:50 +0000
committerTanya Lattner <tonic@nondot.org>2007-06-19 22:29:50 +0000
commit6f7426ec2e46bb19cc9f9e75f1c355b35cf12d7d (patch)
tree2bc3e1c786c2ab38d06ffc68a0c234786a2a9db5 /lib/Transforms/IPO/InlineSimple.cpp
parent9933e4bd7dc07943f62a9ae17dddb815c4901972 (diff)
downloadllvm-6f7426ec2e46bb19cc9f9e75f1c355b35cf12d7d.tar.gz
llvm-6f7426ec2e46bb19cc9f9e75f1c355b35cf12d7d.tar.bz2
llvm-6f7426ec2e46bb19cc9f9e75f1c355b35cf12d7d.tar.xz
Inliner pass header file was moved.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37665 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO/InlineSimple.cpp')
-rw-r--r--lib/Transforms/IPO/InlineSimple.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Transforms/IPO/InlineSimple.cpp b/lib/Transforms/IPO/InlineSimple.cpp
index 4cad5bb6e6..83cfe901a0 100644
--- a/lib/Transforms/IPO/InlineSimple.cpp
+++ b/lib/Transforms/IPO/InlineSimple.cpp
@@ -11,7 +11,7 @@
//
//===----------------------------------------------------------------------===//
-#include "Inliner.h"
+#define DEBUG_TYPE "inline"
#include "llvm/CallingConv.h"
#include "llvm/Instructions.h"
#include "llvm/IntrinsicInst.h"
@@ -21,6 +21,7 @@
#include "llvm/Support/CallSite.h"
#include "llvm/Support/Compiler.h"
#include "llvm/Transforms/IPO.h"
+#include "llvm/Transforms/IPO/InlinerPass.h"
#include <set>
using namespace llvm;