OSDN Git Service

ACKed by Jan Hubicka in http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25776#c9
authoraldot <aldot@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 21 May 2006 13:10:37 +0000 (13:10 +0000)
committeraldot <aldot@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 21 May 2006 13:10:37 +0000 (13:10 +0000)
PR middle-end/25776
* cgraphunit.c (verify_cgraph_node): Typo in error message.

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

gcc/ChangeLog
gcc/cgraphunit.c

index f05e632..b8a4a7d 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 44b3d4f..14e4dca 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)