diff options
author | Guochun Shi <gshi1@uiuc.edu> | 2003-06-10 20:04:30 +0000 |
---|---|---|
committer | Guochun Shi <gshi1@uiuc.edu> | 2003-06-10 20:04:30 +0000 |
commit | 0e93687ccae0a10497effff417cf360740684514 (patch) | |
tree | 143335e78b6c86eee60cb383cb3ce2984e9a7530 /lib/CodeGen/ModuloScheduling/ModuloScheduling.h | |
parent | e95b827db25376f41fb0ecd1ff9649d22f382f64 (diff) |
add some comments
add a function ModuloScheduling::dumpFinalSchedule() to print out final schedule
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6677 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/ModuloScheduling/ModuloScheduling.h')
-rw-r--r-- | lib/CodeGen/ModuloScheduling/ModuloScheduling.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/CodeGen/ModuloScheduling/ModuloScheduling.h b/lib/CodeGen/ModuloScheduling/ModuloScheduling.h index 499d8f380d..00cca149da 100644 --- a/lib/CodeGen/ModuloScheduling/ModuloScheduling.h +++ b/lib/CodeGen/ModuloScheduling/ModuloScheduling.h @@ -13,7 +13,9 @@ #include <iostream> #include <vector> -#define DEBUG_PRINT(x) x +//#define DEBUG_PRINT(x) x + +#define DEBUG_PRINT(x) // for debug information selecton enum ModuloSchedDebugLevel_t { @@ -98,6 +100,7 @@ public: // Debug functions: // Dump the schedule and core schedule void dumpScheduling(); + void dumpFinalSchedule(); // Dump the input vector of nodes // sch: the input vector of nodes |