[polly] r310176 - Fix spelling error in previous commit
Tobias Grosser via llvm-commits
llvm-commits at lists.llvm.org
Sat Aug 5 02:39:00 PDT 2017
Author: grosser
Date: Sat Aug 5 02:39:00 2017
New Revision: 310176
URL: http://llvm.org/viewvc/llvm-project?rev=310176&view=rev
Log:
Fix spelling error in previous commit
Modified:
polly/trunk/unittests/ScheduleOptimizer/ScheduleOptimizerTest.cpp
Modified: polly/trunk/unittests/ScheduleOptimizer/ScheduleOptimizerTest.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/unittests/ScheduleOptimizer/ScheduleOptimizerTest.cpp?rev=310176&r1=310175&r2=310176&view=diff
==============================================================================
--- polly/trunk/unittests/ScheduleOptimizer/ScheduleOptimizerTest.cpp (original)
+++ polly/trunk/unittests/ScheduleOptimizer/ScheduleOptimizerTest.cpp Sat Aug 5 02:39:00 2017
@@ -20,7 +20,7 @@ TEST(ScheduleOptimizer, getPartialTilePr
isl_ctx *ctx = isl_ctx_alloc();
{
- // Verify that for loop with 3 iterations starting at 0 that is
+ // Verify that for a loop with 3 iterations starting at 0 that is
// pre-vectorized (strip-mined with a factor of 2), we correctly identify
// that only the first two iterations are full vector iterations.
isl::map Schedule(
@@ -32,7 +32,7 @@ TEST(ScheduleOptimizer, getPartialTilePr
}
{
- // Verify that for loop with 3 iterations starting at 1 that is
+ // Verify that for a loop with 3 iterations starting at 1 that is
// pre-vectorized (strip-mined with a factor of 2), we correctly identify
// that only the last two iterations are full vector iterations.
isl::map Schedule(
@@ -44,7 +44,7 @@ TEST(ScheduleOptimizer, getPartialTilePr
}
{
- // Verify that for loop with 6 iterations starting at 1 that is
+ // Verify that for a loop with 6 iterations starting at 1 that is
// pre-vectorized (strip-mined with a factor of 2), we correctly identify
// that all but the first and the last iteration are full vector iterations.
isl::map Schedule(
More information about the llvm-commits
mailing list