diff options
author | Jeff Law <law@gcc.gnu.org> | 1998-11-04 12:33:07 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-11-04 12:33:07 -0700 |
commit | bfc5000a48d8b8fdcbaa614dc74ecf6845feab71 (patch) | |
tree | 2b68bb3f4992fd6584c7569f31225fb957fbbdbb /gcc/flow.c | |
parent | a93049dea265c389928186d57cdea48f54814aca (diff) | |
download | gcc-bfc5000a48d8b8fdcbaa614dc74ecf6845feab71.zip gcc-bfc5000a48d8b8fdcbaa614dc74ecf6845feab71.tar.gz gcc-bfc5000a48d8b8fdcbaa614dc74ecf6845feab71.tar.bz2 |
[multiple changes]
Wed Nov 4 19:15:37 1998 "Melissa O'Neill" <oneill@cs.sfu.ca>
* Makefile.in (libcpp.a): Ranlib libcpp.a
* cppulp.c (user_label_prefix): Initialize.
Wed Nov 4 19:07:08 1998 John Wehle (john@feith.com)
* flow.c (mark_regs_live_at_end): Mark the stack pointer as live
at a RETURN if current_function_sp_is_unchanging is set.
From-SVN: r23525
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2880,7 +2880,8 @@ mark_used_regs (needed, live, x, final, insn) if (! EXIT_IGNORE_STACK || (! FRAME_POINTER_REQUIRED && ! current_function_calls_alloca - && flag_omit_frame_pointer)) + && flag_omit_frame_pointer) + || current_function_sp_is_unchanging) #endif SET_REGNO_REG_SET (live, STACK_POINTER_REGNUM); |