ACKed by Jan Hubicka in http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25776#c9
authorBernhard Fischer <aldot@gcc.gnu.org>
Sun, 21 May 2006 13:10:37 +0000 (15:10 +0200)
committerBernhard Reutner-Fischer <aldot@gcc.gnu.org>
Sun, 21 May 2006 13:10:37 +0000 (15:10 +0200)
PR middle-end/25776
* cgraphunit.c (verify_cgraph_node): Typo in error message.

From-SVN: r113952

gcc/ChangeLog
gcc/cgraphunit.c

index f05e632982e6ad213497a8af4a573d8512c1b55b..b8a4a7dc33c107993e2c6770429dfd987601ff16 100644 (file)
@@ -1,3 +1,8 @@
+2006-05-21  Bernhard Fischer  <aldot@gcc.gnu.org>
+
+       PR middle-end/25776
+       * cgraphunit.c (verify_cgraph_node): Typo in error message.
+
 2006-05-20  Andrew Pinski  <pinskia@physics.uc.edu>
 
        PR middle-end/25776
index 44b3d4f05d4eee3b285e4bd23e82e1f7eba4db03..14e4dca4d47c3d3f0a947918a70e74600672d0e1 100644 (file)
@@ -724,7 +724,7 @@ verify_cgraph_node (struct cgraph_node *node)
     }
   if (!node->callers && node->global.inlined_to)
     {
-      error ("inlined_to pointer is set but no predecesors found");
+      error ("inlined_to pointer is set but no predecessors found");
       error_found = true;
     }
   if (node->global.inlined_to == node)