summaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-05-22 17:06:56 +0000
committerChris Lattner <sabre@nondot.org>2002-05-22 17:06:56 +0000
commite87adaac31aff4c442c793012f9cb1508e4aecad (patch)
treee42ff1b008109344feaaaf993e628cdfb04b0677 /include/llvm
parent4435ac009708d78c8894cc9b30185aa6511cd8a6 (diff)
downloadllvm-e87adaac31aff4c442c793012f9cb1508e4aecad.tar.gz
llvm-e87adaac31aff4c442c793012f9cb1508e4aecad.tar.bz2
llvm-e87adaac31aff4c442c793012f9cb1508e4aecad.tar.xz
Avoid #including CommandLine.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2710 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Analysis/LiveVar/FunctionLiveVarInfo.h12
-rw-r--r--include/llvm/CodeGen/FunctionLiveVarInfo.h12
-rw-r--r--include/llvm/CodeGen/RegAllocCommon.h6
3 files changed, 2 insertions, 28 deletions
diff --git a/include/llvm/Analysis/LiveVar/FunctionLiveVarInfo.h b/include/llvm/Analysis/LiveVar/FunctionLiveVarInfo.h
index dab6d3c7f3..816dd860d0 100644
--- a/include/llvm/Analysis/LiveVar/FunctionLiveVarInfo.h
+++ b/include/llvm/Analysis/LiveVar/FunctionLiveVarInfo.h
@@ -63,22 +63,10 @@
#include "llvm/Pass.h"
#include "llvm/Analysis/LiveVar/ValueSet.h"
-#include "Support/CommandLine.h"
class BBLiveVar;
class MachineInstr;
-
-enum LiveVarDebugLevel_t {
- LV_DEBUG_None,
- LV_DEBUG_Normal,
- LV_DEBUG_Instr,
- LV_DEBUG_Verbose
-};
-
-extern cl::Enum<LiveVarDebugLevel_t> DEBUG_LV;
-
-
class FunctionLiveVarInfo : public FunctionPass {
// Machine Instr to LiveVarSet Map for providing LVset BEFORE each inst
std::map<const MachineInstr *, const ValueSet *> MInst2LVSetBI;
diff --git a/include/llvm/CodeGen/FunctionLiveVarInfo.h b/include/llvm/CodeGen/FunctionLiveVarInfo.h
index dab6d3c7f3..816dd860d0 100644
--- a/include/llvm/CodeGen/FunctionLiveVarInfo.h
+++ b/include/llvm/CodeGen/FunctionLiveVarInfo.h
@@ -63,22 +63,10 @@
#include "llvm/Pass.h"
#include "llvm/Analysis/LiveVar/ValueSet.h"
-#include "Support/CommandLine.h"
class BBLiveVar;
class MachineInstr;
-
-enum LiveVarDebugLevel_t {
- LV_DEBUG_None,
- LV_DEBUG_Normal,
- LV_DEBUG_Instr,
- LV_DEBUG_Verbose
-};
-
-extern cl::Enum<LiveVarDebugLevel_t> DEBUG_LV;
-
-
class FunctionLiveVarInfo : public FunctionPass {
// Machine Instr to LiveVarSet Map for providing LVset BEFORE each inst
std::map<const MachineInstr *, const ValueSet *> MInst2LVSetBI;
diff --git a/include/llvm/CodeGen/RegAllocCommon.h b/include/llvm/CodeGen/RegAllocCommon.h
index 9f8abe38e7..7c5cf04952 100644
--- a/include/llvm/CodeGen/RegAllocCommon.h
+++ b/include/llvm/CodeGen/RegAllocCommon.h
@@ -1,9 +1,7 @@
#ifndef REG_ALLOC_COMMON_H
-#define REG_ALLOC_COMMON_H
-
-#include "Support/CommandLine.h"
+#define REG_ALLOC_COMMON_H
// set DEBUG_RA for printing out debug messages
// if DEBUG_RA is 1 normal output messages
@@ -15,6 +13,6 @@ enum RegAllocDebugLevel_t {
RA_DEBUG_Verbose = 2,
};
-extern cl::Enum<RegAllocDebugLevel_t> DEBUG_RA;
+extern RegAllocDebugLevel_t DEBUG_RA;
#endif