diff options
author | Joseph Myers <joseph@codesourcery.com> | 2011-02-17 13:58:09 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2011-02-17 13:58:09 +0000 |
commit | f181a8a73f8b1e0a36659eddcdd94f89ce897561 (patch) | |
tree | 1e5c4472aa984a835e1c3628522bb37be3547d2a /gcc | |
parent | c6869789666becf60317ba746e06dcdff7699867 (diff) | |
download | gcc-f181a8a73f8b1e0a36659eddcdd94f89ce897561.zip gcc-f181a8a73f8b1e0a36659eddcdd94f89ce897561.tar.gz gcc-f181a8a73f8b1e0a36659eddcdd94f89ce897561.tar.bz2 |
sparc.h (CPP_ENDIAN_SPEC): Don't handle -mlittle-endian-data.
* config/sparc/sparc.h (CPP_ENDIAN_SPEC): Don't handle
-mlittle-endian-data.
From-SVN: r170247
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/sparc/sparc.h | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5098e77..3762df3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2011-02-17 Joseph Myers <joseph@codesourcery.com> + * config/sparc/sparc.h (CPP_ENDIAN_SPEC): Don't handle + -mlittle-endian-data. + +2011-02-17 Joseph Myers <joseph@codesourcery.com> + * config/sparc/linux64.h (OPTION_DEFAULT_SPECS): Match -mfpu and -mno-fpu, not -fpu and -no-fpu. * config/sparc/sol2-bi.h (OPTION_DEFAULT_SPECS): Likewise. diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h index 41c54c8..297844f 100644 --- a/gcc/config/sparc/sparc.h +++ b/gcc/config/sparc/sparc.h @@ -388,10 +388,9 @@ extern enum cmodel sparc_cmodel; %{!m32:%{!m64:%(cpp_arch_default)}} \ " -/* Macros to distinguish endianness. */ +/* Macro to distinguish endianness. */ #define CPP_ENDIAN_SPEC "\ -%{mlittle-endian:-D__LITTLE_ENDIAN__} \ -%{mlittle-endian-data:-D__LITTLE_ENDIAN_DATA__}" +%{mlittle-endian:-D__LITTLE_ENDIAN__}" /* Macros to distinguish the particular subtarget. */ #define CPP_SUBTARGET_SPEC "" |