diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-24 15:06:07 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-24 15:06:07 +0000 |
commit | 065aeb1988efa9334bfb78b762ad2477ea1e371f (patch) | |
tree | c1935a8862a4de6211cd81cf98fe4d41229af01f | |
parent | 21f3130adb880f53c91c266e50f1d49cb9b3c6a0 (diff) | |
download | ppe42-gcc-065aeb1988efa9334bfb78b762ad2477ea1e371f.tar.gz ppe42-gcc-065aeb1988efa9334bfb78b762ad2477ea1e371f.zip |
* config/mips/linux.h: Wrap MD_FALLBACK_FRAME_STATE_FOR and
associated includes in #ifndef inhibit_libc.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72898 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mips/linux.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 45b9fa451ae..19ab2eda3b6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-10-24 Richard Sandiford <rsandifo@redhat.com> + + * config/mips/linux.h: Wrap MD_FALLBACK_FRAME_STATE_FOR and + associated includes in #ifndef inhibit_libc. + 2003-10-24 Roger Sayle <roger@eyesopen.com> * doc/libgcc.texi: Document some more of the libgcc API. diff --git a/gcc/config/mips/linux.h b/gcc/config/mips/linux.h index 1785a147036..48c5e3c908d 100644 --- a/gcc/config/mips/linux.h +++ b/gcc/config/mips/linux.h @@ -193,6 +193,7 @@ Boston, MA 02111-1307, USA. */ %{!shared: %{pthread:-lpthread} \ %{profile:-lc_p} %{!profile: -lc}}" +#ifndef inhibit_libc /* Do code reading to identify a signal frame, and set the frame state data appropriately. See unwind-dw2.c for the structs. */ #ifdef IN_LIBGCC2 @@ -262,3 +263,4 @@ typedef struct _sig_ucontext { \ goto SUCCESS; \ } while (0) +#endif |