Commit 8b7d763c by Uros Bizjak

* function.c: Remove unwanted commit.

From-SVN: r176925
parent dadecee2
...@@ -4570,14 +4570,9 @@ stack_protect_prologue (void) ...@@ -4570,14 +4570,9 @@ stack_protect_prologue (void)
tree guard_decl = targetm.stack_protect_guard (); tree guard_decl = targetm.stack_protect_guard ();
rtx x, y; rtx x, y;
printf ("TESTx\n");
x = expand_normal (crtl->stack_protect_guard); x = expand_normal (crtl->stack_protect_guard);
y = expand_normal (guard_decl); 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 /* Allow the target to copy from Y to X without leaking Y into a
register. */ register. */
if (HAVE_stack_protect_set) if (HAVE_stack_protect_set)
...@@ -4609,14 +4604,9 @@ stack_protect_epilogue (void) ...@@ -4609,14 +4604,9 @@ stack_protect_epilogue (void)
rtx label = gen_label_rtx (); rtx label = gen_label_rtx ();
rtx x, y, tmp; rtx x, y, tmp;
printf ("TESTz\n");
x = expand_normal (crtl->stack_protect_guard); x = expand_normal (crtl->stack_protect_guard);
y = expand_normal (guard_decl); y = expand_normal (guard_decl);
debug_rtx (x);
debug_rtx (y);
/* Allow the target to compare Y with X without leaking either into /* Allow the target to compare Y with X without leaking either into
a register. */ a register. */
switch (HAVE_stack_protect_test != 0) switch (HAVE_stack_protect_test != 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment