aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Analysis
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/Analysis
parent4435ac009708d78c8894cc9b30185aa6511cd8a6 (diff)
downloadexternal_llvm-e87adaac31aff4c442c793012f9cb1508e4aecad.zip
external_llvm-e87adaac31aff4c442c793012f9cb1508e4aecad.tar.gz
external_llvm-e87adaac31aff4c442c793012f9cb1508e4aecad.tar.bz2
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/Analysis')
-rw-r--r--include/llvm/Analysis/LiveVar/FunctionLiveVarInfo.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/llvm/Analysis/LiveVar/FunctionLiveVarInfo.h b/include/llvm/Analysis/LiveVar/FunctionLiveVarInfo.h
index dab6d3c..816dd86 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;