summaryrefslogtreecommitdiffstats
path: root/polly/lib/Transform/ScheduleOptimizer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'polly/lib/Transform/ScheduleOptimizer.cpp')
-rw-r--r--polly/lib/Transform/ScheduleOptimizer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/polly/lib/Transform/ScheduleOptimizer.cpp b/polly/lib/Transform/ScheduleOptimizer.cpp
index 17538a30f1e..3a3c8151d23 100644
--- a/polly/lib/Transform/ScheduleOptimizer.cpp
+++ b/polly/lib/Transform/ScheduleOptimizer.cpp
@@ -83,7 +83,7 @@ namespace {
class IslScheduleOptimizer : public ScopPass {
public:
static char ID;
- explicit IslScheduleOptimizer() : ScopPass(ID) { LastSchedule = NULL; }
+ explicit IslScheduleOptimizer() : ScopPass(ID) { LastSchedule = nullptr; }
~IslScheduleOptimizer() { isl_schedule_free(LastSchedule); }
@@ -187,7 +187,7 @@ private:
virtual bool doFinalization() {
isl_schedule_free(LastSchedule);
- LastSchedule = NULL;
+ LastSchedule = nullptr;
return true;
}
};
@@ -444,7 +444,7 @@ bool IslScheduleOptimizer::runOnScop(Scop &S) {
return false;
isl_schedule_free(LastSchedule);
- LastSchedule = NULL;
+ LastSchedule = nullptr;
// Build input data.
int ValidityKinds =
OpenPOWER on IntegriCloud