diff options
author | Ian Lance Taylor <ian@airs.com> | 2005-04-07 18:04:43 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2005-04-07 18:04:43 +0000 |
commit | 03359b57f439670c05cc0050690884e1ac03bca4 (patch) | |
tree | 5de2fc09b693543b94142449b0b0f711fd2c04a7 | |
parent | ab7983139ddfcac4ef3ae8d63efddbbd3bcd4310 (diff) | |
download | gcc-03359b57f439670c05cc0050690884e1ac03bca4.zip gcc-03359b57f439670c05cc0050690884e1ac03bca4.tar.gz gcc-03359b57f439670c05cc0050690884e1ac03bca4.tar.bz2 |
iq2000.h (DONT_ACCESS_GBLS_AFTER_EPILOGUE): Don't define.
* config/iq2000/iq2000.h (DONT_ACCESS_GBLS_AFTER_EPILOGUE): Don't
define.
* config/mips/mips.h (DONT_ACCESS_GBLS_AFTER_EPILOGUE): Likewise.
* config/sparc/sparc.h (DONT_ACCESS_GBLS_AFTER_EPILOGUE):
Likewise.
From-SVN: r97790
-rw-r--r-- | gcc/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/config/iq2000/iq2000.h | 5 | ||||
-rw-r--r-- | gcc/config/mips/mips.h | 5 | ||||
-rw-r--r-- | gcc/config/sparc/sparc.h | 2 |
4 files changed, 8 insertions, 12 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 82368e1..fbc0582 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +2005-04-07 Ian Lance Taylor <ian@airs.com> + + * config/iq2000/iq2000.h (DONT_ACCESS_GBLS_AFTER_EPILOGUE): Don't + define. + * config/mips/mips.h (DONT_ACCESS_GBLS_AFTER_EPILOGUE): Likewise. + * config/sparc/sparc.h (DONT_ACCESS_GBLS_AFTER_EPILOGUE): + Likewise. + 2005-04-07 Kazu Hirata <kazu@cs.umass.edu> * tree-ssa-sink.c (nearest_common_dominator_of_uses): Consider diff --git a/gcc/config/iq2000/iq2000.h b/gcc/config/iq2000/iq2000.h index a352eea..c705cfe 100644 --- a/gcc/config/iq2000/iq2000.h +++ b/gcc/config/iq2000/iq2000.h @@ -1069,11 +1069,6 @@ extern void sbss_section (void); #define SDATA_SECTION_ASM_OP "\t.sdata" /* Small data. */ -/* See iq2000_expand_prologue's use of loadgp for when this should be - true. */ - -#define DONT_ACCESS_GBLS_AFTER_EPILOGUE 0 - /* List of all IQ2000 punctuation characters used by print_operand. */ extern char iq2000_print_operand_punct[256]; diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 9ef7081..2c6e066 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -2677,11 +2677,6 @@ while (0) #undef PTRDIFF_TYPE #define PTRDIFF_TYPE (POINTER_SIZE == 64 ? "long int" : "int") - -/* See mips_expand_prologue's use of loadgp for when this should be - true. */ - -#define DONT_ACCESS_GBLS_AFTER_EPILOGUE (TARGET_ABICALLS && !TARGET_OLDABI) #ifndef __mips16 /* Since the bits of the _init and _fini function is spread across diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h index 0a091a6..0818562 100644 --- a/gcc/config/sparc/sparc.h +++ b/gcc/config/sparc/sparc.h @@ -2695,5 +2695,3 @@ extern int sparc_indent_opcode; /* The number of Pmode words for the setjmp buffer. */ #define JMP_BUF_SIZE 12 - -#define DONT_ACCESS_GBLS_AFTER_EPILOGUE (flag_pic) |