]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
tree-if-conv (predicate_scalar_phi): Commentary typo fix.
authorBernhard Reutner-Fischer <aldot@gcc.gnu.org>
Fri, 24 Feb 2012 09:42:24 +0000 (10:42 +0100)
committerBernhard Reutner-Fischer <aldot@gcc.gnu.org>
Fri, 24 Feb 2012 09:42:24 +0000 (10:42 +0100)
2012-02-13  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>

* tree-if-conv (predicate_scalar_phi): Commentary typo fix.

From-SVN: r184546

gcc/ChangeLog
gcc/tree-if-conv.c

index 71e0f889c77f245a2091f255fa677d29b6017642..cb6d8279989eec0410178c7630db5b6578cf93e5 100644 (file)
@@ -1,3 +1,7 @@
+2012-02-13  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
+
+       * tree-if-conv (predicate_scalar_phi): Commentary typo fix.
+
 2012-02-23  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
 
        * tree-phinodes.c (make_phi_node): Mark static.
index cdbbe5bd353860ba4de636148ff81cf333ef4a92..ca9503f3e47464a15c7c6f5a42538a0800ca1088 100644 (file)
@@ -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;