diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-07 18:04:43 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-07 18:04:43 +0000 |
commit | d52ef76af869d208cd5e6341e48f997b96147539 (patch) | |
tree | 5de2fc09b693543b94142449b0b0f711fd2c04a7 | |
parent | c48d3403e29d1867251679626537464f4ebf882c (diff) | |
download | gcc-d52ef76af869d208cd5e6341e48f997b96147539.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97790 138bc75d-0d04-0410-961f-82ee72b054a4
-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 82368e1d9a3..fbc0582e0d6 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 a352eea2e1e..c705cfef418 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 9ef7081c637..2c6e06691f4 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 0a091a6ac98..08185624d65 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) |