From: froydnj Date: Fri, 22 Feb 2008 12:59:05 +0000 (+0000) Subject: * config/rs6000/linuxspe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=commitdiff_plain;h=b9cd27b3a12f395bbe51d948e84655d6a62ab1ba * config/rs6000/linuxspe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Use spe_abi. * config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@132551 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a4e4a62a578..fd4ca31f257 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2008-02-22 Nathan Froyd + + * config/rs6000/linuxspe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): + Use spe_abi. + * config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Likewise. + 2008-02-22 Hans-Peter Nilsson * config/cris/cris.h (REG_CLASS_FROM_LETTER): Recognize 'b' for diff --git a/gcc/config/rs6000/eabispe.h b/gcc/config/rs6000/eabispe.h index 0acc17c7022..c3a3f2b4e53 100644 --- a/gcc/config/rs6000/eabispe.h +++ b/gcc/config/rs6000/eabispe.h @@ -31,7 +31,7 @@ #define SUBSUBTARGET_OVERRIDE_OPTIONS \ if (rs6000_select[1].string == NULL) \ rs6000_cpu = PROCESSOR_PPC8540; \ - if (!rs6000_explicit_options.abi) \ + if (!rs6000_explicit_options.spe_abi) \ rs6000_spe_abi = 1; \ if (!rs6000_explicit_options.float_gprs) \ rs6000_float_gprs = 1; \ diff --git a/gcc/config/rs6000/linuxspe.h b/gcc/config/rs6000/linuxspe.h index 1aea7442c54..c526cf8dce4 100644 --- a/gcc/config/rs6000/linuxspe.h +++ b/gcc/config/rs6000/linuxspe.h @@ -30,7 +30,7 @@ #define SUBSUBTARGET_OVERRIDE_OPTIONS \ if (rs6000_select[1].string == NULL) \ rs6000_cpu = PROCESSOR_PPC8540; \ - if (!rs6000_explicit_options.abi) \ + if (!rs6000_explicit_options.spe_abi) \ rs6000_spe_abi = 1; \ if (!rs6000_explicit_options.float_gprs) \ rs6000_float_gprs = 1; \