summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp
diff options
context:
space:
mode:
authorGuochun Shi <gshi1@uiuc.edu>2003-05-30 00:17:09 +0000
committerGuochun Shi <gshi1@uiuc.edu>2003-05-30 00:17:09 +0000
commit856ee9154fb4dc5bff11d271c925734f06677cce (patch)
tree98432130e6fb4342e38fa5d285357c90108b41fa /llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp
parent2618272dad389b16fd6b53e6b049165818be5b8e (diff)
downloadbcm5719-llvm-856ee9154fb4dc5bff11d271c925734f06677cce.tar.gz
bcm5719-llvm-856ee9154fb4dc5bff11d271c925734f06677cce.zip
so far everything compiles
llvm-svn: 6423
Diffstat (limited to 'llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp')
-rw-r--r--llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp b/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp
index 839382a9c6a..10a888f55e1 100644
--- a/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp
+++ b/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp
@@ -35,19 +35,19 @@
// see ModuloSchedulingPass::runOnFunction()
//************************************************************
-namespace {
- cl::opt<ModuloScheduling::DebugLevel_t,true>
- SDL_opt("modsched", cl::Hidden, cl::location(ModuloScheduling::DebugLevel),
- cl::desc("enable modulo scheduling debugging information"),
- cl::values(clEnumValN(ModuloScheduling::DebugLevel_NoDebugInfo,
- "none", "disable debug output"),
- clEnumValN(ModuloScheduling::DebugLevel_PrintSchedule,
- "psched", "print original and new schedule"),
- clEnumValN(ModuloScheduling::DebugLevel_PrintScheduleProcess,
- "pschedproc",
- "print how the new schdule is produced"),
- 0));
-}
+ModuloSchedDebugLevel_t ModuloSchedDebugLevel;
+
+cl::opt<ModuloSchedDebugLevel_t,true>
+SDL_opt("modsched", cl::Hidden, cl::location(ModuloSchedDebugLevel),
+ cl::desc("enable modulo scheduling debugging information"),
+ cl::values(clEnumValN(ModuloSchedDebugLevel_NoDebugInfo,
+ "none", "disable debug output"),
+ clEnumValN(ModuloSchedDebugLevel_PrintSchedule,
+ "psched", "print original and new schedule"),
+ clEnumValN(ModuloSchedDebugLevel_PrintScheduleProcess,
+ "pschedproc",
+ "print how the new schdule is produced"),
+ 0));
// Computes the schedule and inserts epilogue and prologue
//
OpenPOWER on IntegriCloud