aboutsummaryrefslogtreecommitdiff
path: root/gcc/explow.c
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2009-12-13 23:00:53 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2009-12-13 23:00:53 +0000
commit82b68940a30019eb2b4c18f3402e56d2c4b39891 (patch)
tree80e91f0f3e1c1df6cf7df2dd11df4b89727041e3 /gcc/explow.c
parent840a82bab8661de20dd5603f123d325d6de5a004 (diff)
downloadgcc-82b68940a30019eb2b4c18f3402e56d2c4b39891.zip
gcc-82b68940a30019eb2b4c18f3402e56d2c4b39891.tar.gz
gcc-82b68940a30019eb2b4c18f3402e56d2c4b39891.tar.bz2
tm.texi (STACK_CHECK_PROBE_LOAD): Delete.
* doc/tm.texi (STACK_CHECK_PROBE_LOAD): Delete. * expr.h (STACK_CHECK_PROBE_LOAD): Likewise. * explow.c (emit_stack_probe): Do not test STACK_CHECK_PROBE_LOAD. * system.h (STACK_CHECK_PROBE_LOAD): Poison. From-SVN: r155199
Diffstat (limited to 'gcc/explow.c')
-rw-r--r--gcc/explow.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/explow.c b/gcc/explow.c
index 4d1d24e..1f66f3e 100644
--- a/gcc/explow.c
+++ b/gcc/explow.c
@@ -1366,9 +1366,6 @@ emit_stack_probe (rtx address)
emit_insn (gen_probe_stack (memref));
else
#endif
- if (STACK_CHECK_PROBE_LOAD)
- emit_move_insn (gen_reg_rtx (word_mode), memref);
- else
emit_move_insn (memref, const0_rtx);
}