[llvm-commits] [polly] r149383 - /polly/trunk/lib/ScheduleOptimizer.cpp

Tobias Grosser grosser at fim.uni-passau.de
Tue Jan 31 05:26:29 PST 2012


Author: grosser
Date: Tue Jan 31 07:26:29 2012
New Revision: 149383

URL: http://llvm.org/viewvc/llvm-project?rev=149383&view=rev
Log:
Schedule: Sort includes and remove useless ones

Modified:
    polly/trunk/lib/ScheduleOptimizer.cpp

Modified: polly/trunk/lib/ScheduleOptimizer.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/ScheduleOptimizer.cpp?rev=149383&r1=149382&r2=149383&view=diff
==============================================================================
--- polly/trunk/lib/ScheduleOptimizer.cpp (original)
+++ polly/trunk/lib/ScheduleOptimizer.cpp Tue Jan 31 07:26:29 2012
@@ -19,20 +19,18 @@
 
 #include "polly/ScheduleOptimizer.h"
 
-#include "polly/Cloog.h"
-#include "polly/LinkAllPasses.h"
 #include "polly/CodeGeneration.h"
-#include "polly/Support/GICHelper.h"
 #include "polly/Dependences.h"
+#include "polly/LinkAllPasses.h"
 #include "polly/ScopInfo.h"
 
 #include "isl/aff.h"
-#include "isl/space.h"
-#include "isl/map.h"
-#include "isl/constraint.h"
-#include "isl/schedule.h"
 #include "isl/band.h"
+#include "isl/constraint.h"
+#include "isl/map.h"
 #include "isl/options.h"
+#include "isl/schedule.h"
+#include "isl/space.h"
 
 #define DEBUG_TYPE "polly-opt-isl"
 #include "llvm/Support/Debug.h"
@@ -503,10 +501,6 @@
   if (!schedule)
     return false;
 
-  DEBUG(dbgs() << "Computed schedule: ");
-  DEBUG(dbgs() << stringFromIslObj(schedule));
-  DEBUG(dbgs() << "Individual bands: ");
-
   isl_union_map *ScheduleMap = getScheduleMap(schedule);
 
   for (Scop::iterator SI = S.begin(), SE = S.end(); SI != SE; ++SI) {





More information about the llvm-commits mailing list