diff options
author | Vladimir Kargov <kargov@gmail.com> | 2010-09-30 21:19:07 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2010-09-30 21:19:07 +0000 |
commit | 45fc26fcadbb2412341d204f4b1f93f527a49d38 (patch) | |
tree | 88fa38e41ca8fc9554da181e7f1cba5c6083ea30 /gcc | |
parent | 6272efefdd3a6ec6f886e7a06260e3e82e273946 (diff) | |
download | gcc-45fc26fcadbb2412341d204f4b1f93f527a49d38.zip gcc-45fc26fcadbb2412341d204f4b1f93f527a49d38.tar.gz gcc-45fc26fcadbb2412341d204f4b1f93f527a49d38.tar.bz2 |
Fix the description of graphite_can_represent_loop.
2010-08-20 Vladimir Kargov <kargov@gmail.com>
* graphite-scop-detection.c (graphite_can_represent_loop): Correct the
description.
From-SVN: r164792
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/ChangeLog.graphite | 5 | ||||
-rw-r--r-- | gcc/graphite-scop-detection.c | 6 |
3 files changed, 13 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cc30d34..3b1023c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-09-30 Vladimir Kargov <kargov@gmail.com> + + * graphite-scop-detection.c (graphite_can_represent_loop): Correct the + description. + 2010-09-30 Sebastian Pop <sebastian.pop@amd.com> * tree-scalar-evolution.c (instantiate_array_ref): New. diff --git a/gcc/ChangeLog.graphite b/gcc/ChangeLog.graphite index e46a6cb..4337d88 100644 --- a/gcc/ChangeLog.graphite +++ b/gcc/ChangeLog.graphite @@ -1,3 +1,8 @@ +2010-08-20 Vladimir Kargov <kargov@gmail.com> + + * graphite-scop-detection.c (graphite_can_represent_loop): Correct the + description. + 2010-08-20 Sebastian Pop <sebastian.pop@amd.com> PR middle-end/45230 diff --git a/gcc/graphite-scop-detection.c b/gcc/graphite-scop-detection.c index 5647d2e..5fae5aa 100644 --- a/gcc/graphite-scop-detection.c +++ b/gcc/graphite-scop-detection.c @@ -383,9 +383,9 @@ harmful_stmt_in_bb (basic_block scop_entry, loop_p outer_loop, basic_block bb) return NULL; } -/* Return true when it is not possible to represent LOOP in the - polyhedral representation. This is evaluated taking SCOP_ENTRY - in mind. */ +/* Return true if LOOP can be represented in the polyhedral + representation. This is evaluated taking SCOP_ENTRY and + OUTERMOST_LOOP in mind. */ static bool graphite_can_represent_loop (basic_block scop_entry, loop_p loop) |