diff options
author | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2012-02-24 10:42:24 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2012-02-24 10:42:24 +0100 |
commit | b8f4632ce8ad7ec372448610c3711762f8032cb9 (patch) | |
tree | 67508f257cc4b44f029ecb7f9cb1bbfb05245f6e /gcc/tree-if-conv.c | |
parent | 4021ad55900b053d9060ae74cfaa504c117f89b7 (diff) | |
download | gcc-b8f4632ce8ad7ec372448610c3711762f8032cb9.zip gcc-b8f4632ce8ad7ec372448610c3711762f8032cb9.tar.gz gcc-b8f4632ce8ad7ec372448610c3711762f8032cb9.tar.bz2 |
tree-if-conv (predicate_scalar_phi): Commentary typo fix.
2012-02-13 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
* tree-if-conv (predicate_scalar_phi): Commentary typo fix.
From-SVN: r184546
Diffstat (limited to 'gcc/tree-if-conv.c')
-rw-r--r-- | gcc/tree-if-conv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-if-conv.c b/gcc/tree-if-conv.c index cdbbe5b..ca9503f 100644 --- a/gcc/tree-if-conv.c +++ b/gcc/tree-if-conv.c @@ -1262,7 +1262,7 @@ find_phi_replacement_condition (struct loop *loop, arguments. For example, - S1: A = PHI <x1(1), x2(5) + S1: A = PHI <x1(1), x2(5)> is converted into, S2: A = cond ? x1 : x2; |