diff options
author | Chris Lattner <sabre@nondot.org> | 2002-05-22 17:08:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-05-22 17:08:27 +0000 |
commit | 70e60cbd4dd59b61e3e9d0a55f24cf92b0dc8724 (patch) | |
tree | 2bf3f9e800864c8f2e76a41aa932e31c09266422 /lib/CodeGen/InstrSched/SchedPriorities.h | |
parent | 59dcbf9c037ba3f03efdc7371514ced1a63d6c55 (diff) |
Move debug options out of header files so that the header does not have
to #include CommandLine.h.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2712 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/InstrSched/SchedPriorities.h')
-rw-r--r-- | lib/CodeGen/InstrSched/SchedPriorities.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/InstrSched/SchedPriorities.h b/lib/CodeGen/InstrSched/SchedPriorities.h index 3f087d5224..a34557ca15 100644 --- a/lib/CodeGen/InstrSched/SchedPriorities.h +++ b/lib/CodeGen/InstrSched/SchedPriorities.h @@ -24,7 +24,6 @@ #include "SchedGraph.h" #include "llvm/CodeGen/InstrScheduling.h" #include "llvm/Target/MachineSchedInfo.h" -#include "Support/CommandLine.h" #include <list> #include <ext/hash_set> #include <iostream> @@ -44,7 +43,7 @@ enum SchedDebugLevel_t { Sched_PrintSchedGraphs, }; -extern cl::Enum<SchedDebugLevel_t> SchedDebugLevel; +extern SchedDebugLevel_t SchedDebugLevel; //--------------------------------------------------------------------------- // Function: instrIsFeasible |