OSDN Git Service

2012-02-13 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
authoraldot <aldot@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 24 Feb 2012 09:42:24 +0000 (09:42 +0000)
committeraldot <aldot@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 24 Feb 2012 09:42:24 +0000 (09:42 +0000)
* tree-if-conv (predicate_scalar_phi): Commentary typo fix.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@184546 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 71e0f88..cb6d827 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 cdbbe5b..ca9503f 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;