aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMichael Hayes <m.hayes@elec.canterbury.ac.nz>1999-09-04 22:31:09 +0000
committerMichael Hayes <m.hayes@gcc.gnu.org>1999-09-04 22:31:09 +0000
commitad3781e1a9194a0c886ec250c4fedfe71ab329ff (patch)
treefd6fe258cd885a419ef954743057cfa302b83e9c /gcc
parent03705c9588342aade61d7e8019a85e4095b4527e (diff)
downloadgcc-ad3781e1a9194a0c886ec250c4fedfe71ab329ff.zip
gcc-ad3781e1a9194a0c886ec250c4fedfe71ab329ff.tar.gz
gcc-ad3781e1a9194a0c886ec250c4fedfe71ab329ff.tar.bz2
c4x.h (CALLER_SAVE_PROFITABLE): Disable.
* config/c4x/c4x.h (CALLER_SAVE_PROFITABLE): Disable. This has been disabled since caller-save has marginal benefit on the c3x/c4x and it avoids a long standing caller-save bug. From-SVN: r29112
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/c4x/c4x.h8
2 files changed, 8 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 326147a..e765fac 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+Sun Sep 5 10:13:19 1999 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
+
+ * config/c4x/c4x.h (CALLER_SAVE_PROFITABLE): Disable.
+
Sat Sep 4 13:44:01 1999 Mark Mitchell <mark@codesourcery.com>
* Makefile.in (C_AND_C_OBJS): Add gcc-callbacks.o.
diff --git a/gcc/config/c4x/c4x.h b/gcc/config/c4x/c4x.h
index 14b0133..3f106f0 100644
--- a/gcc/config/c4x/c4x.h
+++ b/gcc/config/c4x/c4x.h
@@ -1086,11 +1086,11 @@ extern struct rtx_def *c4x_function_arg();
(c4x_function_arg(&CUM, MODE, TYPE, NAMED))
/* Define the profitability of saving registers around calls.
- NOTE: For now we turn this off because caller-save assumes
- that a register with a QFmode quantity can be saved/restored
- using QImode. */
+ We disable caller save to avoid a bug in flow.c (this also affects
+ other targets such as m68k). Since we must use stf/sti,
+ the profitability is marginal anyway. */
-/* #define CALLER_SAVE_PROFITABLE(REFS,CALLS) 0 */
+#define CALLER_SAVE_PROFITABLE(REFS,CALLS) 0
/* Never pass data by reference. */