summaryrefslogtreecommitdiff
path: root/gcc/explow.c
diff options
context:
space:
mode:
authorLarin Hennessy <larin@science.oregonstate.edu>2003-05-23 18:19:21 +0000
committerZack Weinberg <zack@gcc.gnu.org>2003-05-23 18:19:21 +0000
commita27b2b71a86d86d43a845e7e3c7d5c1fabb7bcd6 (patch)
tree18f9dfdd3e4148ee3f19e0374e0d0a5c982aace9 /gcc/explow.c
parent24bcc7214c19457d189acf509a2bd5dcfc0e20fd (diff)
downloadgcc-a27b2b71a86d86d43a845e7e3c7d5c1fabb7bcd6.tar.gz
explow.c (allocate_dynamic_stack_space): Remove call to gen_probe.
2003-05-23 Larin Hennessy <larin@science.oregonstate.edu> Zack Weinberg <zack@codesourcery.com> * explow.c (allocate_dynamic_stack_space): Remove call to gen_probe. * config/m68k/m68k.c (m68k_output_function_prologue): Remove code under #if NEED_PROBE. * config/m68k/m68k.h: Don't define NEED_PROBE. * config/m68k/m68k.md: Remove "probe" insn. * doc/md.texi: Remove documentation of "probe" pattern. Co-Authored-By: Zack Weinberg <zack@codesourcery.com> From-SVN: r67125
Diffstat (limited to 'gcc/explow.c')
-rw-r--r--gcc/explow.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/gcc/explow.c b/gcc/explow.c
index 7114094d2d6..da7e2b797b9 100644
--- a/gcc/explow.c
+++ b/gcc/explow.c
@@ -1448,13 +1448,6 @@ allocate_dynamic_stack_space (size, target, known_align)
NULL_RTX, 1);
}
- /* Some systems require a particular insn to refer to the stack
- to make the pages exist. */
-#ifdef HAVE_probe
- if (HAVE_probe)
- emit_insn (gen_probe ());
-#endif
-
/* Record the new stack level for nonlocal gotos. */
if (nonlocal_goto_handler_slots != 0)
emit_stack_save (SAVE_NONLOCAL, &nonlocal_goto_stack_level, NULL_RTX);