diff options
author | Ian Bolton <ian.bolton@arm.com> | 2012-05-01 14:37:25 +0000 |
---|---|---|
committer | Greta Yorsh <gretay@gcc.gnu.org> | 2012-05-01 15:37:25 +0100 |
commit | 90911ab64f49da361102ebc7c9996765beb507ce (patch) | |
tree | 0d1458c773ab8eed2ccd7547f41b90098d282d88 | |
parent | 77f496dfdf148701f30b6eb978e3676d51c65fa5 (diff) | |
download | gcc-90911ab64f49da361102ebc7c9996765beb507ce.zip gcc-90911ab64f49da361102ebc7c9996765beb507ce.tar.gz gcc-90911ab64f49da361102ebc7c9996765beb507ce.tar.bz2 |
arm-protos.h (thumb_unexpanded_epilogue): Rename to...
2012-05-01 Ian Bolton <ian.bolton@arm.com>
Sameera Deshpande <sameera.deshpande@arm.com>
Greta Yorsh <greta.yorsh@arm.com>
* config/arm/arm-protos.h (thumb_unexpanded_epilogue): Rename to...
(thumb1_unexpanded_epilogue): ...this.
* config/arm/arm.c (thumb_unexpanded_epilogue): Rename to...
(thumb1_unexpanded_epilogue): ...this.
* config/arm/arm.md (thumb_unexpanded_epilogue): Rename to...
(thumb1_unexpanded_epilogue): ...this.
Co-Authored-By: Greta Yorsh <greta.yorsh@arm.com>
Co-Authored-By: Sameera Deshpande <sameera.deshpande@arm.com>
From-SVN: r187014
-rw-r--r-- | gcc/ChangeLog | 11 | ||||
-rw-r--r-- | gcc/config/arm/arm-protos.h | 2 | ||||
-rw-r--r-- | gcc/config/arm/arm.c | 2 | ||||
-rw-r--r-- | gcc/config/arm/arm.md | 2 |
4 files changed, 14 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 829f692..5928a9e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,14 @@ +2012-05-01 Ian Bolton <ian.bolton@arm.com> + Sameera Deshpande <sameera.deshpande@arm.com> + Greta Yorsh <greta.yorsh@arm.com> + + * config/arm/arm-protos.h (thumb_unexpanded_epilogue): Rename to... + (thumb1_unexpanded_epilogue): ...this. + * config/arm/arm.c (thumb_unexpanded_epilogue): Rename to... + (thumb1_unexpanded_epilogue): ...this. + * config/arm/arm.md (thumb_unexpanded_epilogue): Rename to... + (thumb1_unexpanded_epilogue): ...this. + 2012-05-01 Richard Earnshaw <rearnsha@arm.com> * arm/linux-eabi.h (GLIBC_DYNAMIC_LINKER_DEFAULT): Avoid ifdef diff --git a/gcc/config/arm/arm-protos.h b/gcc/config/arm/arm-protos.h index efb5b9f..53c2aef 100644 --- a/gcc/config/arm/arm-protos.h +++ b/gcc/config/arm/arm-protos.h @@ -178,7 +178,7 @@ extern int arm_float_words_big_endian (void); /* Thumb functions. */ extern void arm_init_expanders (void); -extern const char *thumb_unexpanded_epilogue (void); +extern const char *thumb1_unexpanded_epilogue (void); extern void thumb1_expand_prologue (void); extern void thumb1_expand_epilogue (void); extern const char *thumb1_output_interwork (void); diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index b4df624..68350b1 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -22189,7 +22189,7 @@ thumb1_extra_regs_pushed (arm_stack_offsets *offsets, bool for_prologue) /* The bits which aren't usefully expanded as rtl. */ const char * -thumb_unexpanded_epilogue (void) +thumb1_unexpanded_epilogue (void) { arm_stack_offsets *offsets; int regno; diff --git a/gcc/config/arm/arm.md b/gcc/config/arm/arm.md index 7a49270..0103c2b 100644 --- a/gcc/config/arm/arm.md +++ b/gcc/config/arm/arm.md @@ -10712,7 +10712,7 @@ if (TARGET_32BIT) return arm_output_epilogue (NULL); else /* TARGET_THUMB1 */ - return thumb_unexpanded_epilogue (); + return thumb1_unexpanded_epilogue (); " ; Length is absolute worst case [(set_attr "length" "44") |