This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[PATCH] ARM fix bootstrap lossage
- From: Richard Earnshaw <Richard dot Earnshaw at buzzard dot freeserve dot co dot uk>
- To: gcc-patches at gcc dot gnu dot org
- Cc: Richard dot Earnshaw at buzzard dot freeserve dot co dot uk
- Date: Sun, 15 May 2005 19:30:22 +0100
- Subject: [PATCH] ARM fix bootstrap lossage
The recent change to thumb_unexpanded_epilogue broke native bootstraping.
The variable mode is no-longer used.
Obvious fix.
2005-05-15 Richard Earnshaw <richard.earnshaw@arm.com>
* arm.c (thumb_unexpanded_epilogue): Delete unused variable 'mode'.
Index: config/arm/arm.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/arm/arm.c,v
retrieving revision 1.459
diff -p -p -r1.459 arm.c
*** config/arm/arm.c 13 May 2005 21:13:17 -0000 1.459
--- config/arm/arm.c 15 May 2005 18:28:14 -0000
*************** thumb_unexpanded_epilogue (void)
*** 12922,12928 ****
int high_regs_pushed = 0;
int had_to_push_lr;
int size;
- int mode;
if (return_used_this_function)
return "";
--- 12922,12927 ----