aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.c
diff options
context:
space:
mode:
authorUros Bizjak <uros@gcc.gnu.org>2011-07-29 15:51:16 +0200
committerUros Bizjak <uros@gcc.gnu.org>2011-07-29 15:51:16 +0200
commit8b7d763c8475f15c9acaeea799a229a338db477e (patch)
tree9b306478f863a434d6799befd4b5b13616ed21cc /gcc/function.c
parentdadecee2036a9656936063460299f413233b13ff (diff)
downloadgcc-8b7d763c8475f15c9acaeea799a229a338db477e.zip
gcc-8b7d763c8475f15c9acaeea799a229a338db477e.tar.gz
gcc-8b7d763c8475f15c9acaeea799a229a338db477e.tar.bz2
* function.c: Remove unwanted commit.
From-SVN: r176925
Diffstat (limited to 'gcc/function.c')
-rw-r--r--gcc/function.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/function.c b/gcc/function.c
index 8f8c96f..c94680c 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -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)