* function.c: Remove unwanted commit.
authoruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 29 Jul 2011 13:51:16 +0000 (13:51 +0000)
committeruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 29 Jul 2011 13:51:16 +0000 (13:51 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@176925 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/function.c

index 8f8c96f..c94680c 100644 (file)
@@ -4570,14 +4570,9 @@ stack_protect_prologue (void)
   tree guard_decl = targetm.stack_protect_guard ();
   rtx x, y;
 
-  printf ("TESTx\n");
-
   x = expand_normal (crtl->stack_protect_guard);
   y = expand_normal (guard_decl);
 
-  debug_rtx (x);
-  debug_rtx (y);
-
   /* Allow the target to copy from Y to X without leaking Y into a
      register.  */
   if (HAVE_stack_protect_set)
@@ -4609,14 +4604,9 @@ stack_protect_epilogue (void)
   rtx label = gen_label_rtx ();
   rtx x, y, tmp;
 
-  printf ("TESTz\n");
-
   x = expand_normal (crtl->stack_protect_guard);
   y = expand_normal (guard_decl);
 
-  debug_rtx (x);
-  debug_rtx (y);
-
   /* Allow the target to compare Y with X without leaking either into
      a register.  */
   switch (HAVE_stack_protect_test != 0)