diff options
author | Uros Bizjak <uros@gcc.gnu.org> | 2011-04-23 09:43:50 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2011-04-23 09:43:50 +0200 |
commit | ff9419990b8556891542d01696a2ab5fb6e55379 (patch) | |
tree | aa7fbf3a1d076df070791a0be8c4d1e52185051b /gcc | |
parent | 770937fd6c0923db46f3c6af1f88898b69901fbf (diff) | |
download | gcc-ff9419990b8556891542d01696a2ab5fb6e55379.zip gcc-ff9419990b8556891542d01696a2ab5fb6e55379.tar.gz gcc-ff9419990b8556891542d01696a2ab5fb6e55379.tar.bz2 |
Revert:
2011-04-22 Uros Bizjak <ubizjak@gmail.com>
PR target/48723
* config/i386/i386.c (ix86_expand_prologue): Update m->fs.sp_offset
after the call to ix86_adjust_stack_and_probe.
From-SVN: r172894
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b40ab73..edff505 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -95,12 +95,6 @@ * tree-ssa-forwprop.c (associate_plusminus): For A + ~A and ~A + A optimizations use build_int_cst_type instead of build_int_cst. -2011-04-22 Uros Bizjak <ubizjak@gmail.com> - - PR target/48723 - * config/i386/i386.c (ix86_expand_prologue): Update m->fs.sp_offset - after the call to ix86_adjust_stack_and_probe. - 2011-04-22 Joseph Myers <joseph@codesourcery.com> * config/bfin/bfin-protos.h (Mmode): Don't define. Expand diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 75927ee..558eff1 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -10628,7 +10628,6 @@ ix86_expand_prologue (void) if (STACK_CHECK_MOVING_SP) { ix86_adjust_stack_and_probe (allocate); - m->fs.sp_offset += allocate; allocate = 0; } else |