aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/IPO/Inliner.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Transforms/IPO/Inliner.h')
-rw-r--r--lib/Transforms/IPO/Inliner.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Transforms/IPO/Inliner.h b/lib/Transforms/IPO/Inliner.h
index 1f3d0d2..805876c 100644
--- a/lib/Transforms/IPO/Inliner.h
+++ b/lib/Transforms/IPO/Inliner.h
@@ -20,6 +20,9 @@
#define DEBUG_TYPE "inline"
#include "llvm/CallGraphSCCPass.h"
#include <set>
+
+namespace llvm {
+
class CallSite;
/// Inliner - This class contains all of the helper code which is used to
@@ -61,5 +64,6 @@ private:
bool performInlining(CallSite CS, std::set<Function*> &SCC);
};
+} // End llvm namespace
#endif