aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Analysis/ProfileInfoLoader.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/Analysis/ProfileInfoLoader.cpp b/lib/Analysis/ProfileInfoLoader.cpp
index 6c3f0d7bb3..96c3e2c5d6 100644
--- a/lib/Analysis/ProfileInfoLoader.cpp
+++ b/lib/Analysis/ProfileInfoLoader.cpp
@@ -13,19 +13,13 @@
//===----------------------------------------------------------------------===//
#include "llvm/Analysis/ProfileInfoLoader.h"
+#include "llvm/Analysis/ProfileInfoTypes.h"
#include "llvm/Module.h"
#include "llvm/InstrTypes.h"
#include <cstdio>
#include <map>
using namespace llvm;
-enum ProfilingType {
- ArgumentInfo = 1, // The command line argument block
- FunctionInfo = 2, // Function profiling information
- BlockInfo = 3, // Block profiling information
- EdgeInfo = 4, // Edge profiling information
-};
-
// ByteSwap - Byteswap 'Var' if 'Really' is true.
//
static inline unsigned ByteSwap(unsigned Var, bool Really) {