summaryrefslogtreecommitdiff
path: root/tools/llvm-prof/ProfileInfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/llvm-prof/ProfileInfo.h')
-rw-r--r--tools/llvm-prof/ProfileInfo.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/llvm-prof/ProfileInfo.h b/tools/llvm-prof/ProfileInfo.h
index 24e4296156..db4500127d 100644
--- a/tools/llvm-prof/ProfileInfo.h
+++ b/tools/llvm-prof/ProfileInfo.h
@@ -18,6 +18,9 @@
#include <vector>
#include <string>
#include <utility>
+
+namespace llvm {
+
class Module;
class Function;
class BasicBlock;
@@ -55,4 +58,6 @@ public:
void getBlockCounts(std::vector<std::pair<BasicBlock*, unsigned> > &Counts);
};
+} // End llvm namespace
+
#endif