diff options
| author | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-28 04:21:17 +0000 |
|---|---|---|
| committer | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-28 04:21:17 +0000 |
| commit | fbf041b8155e2b3eb6300b1988aedbceb30501ee (patch) | |
| tree | 99c3a7323fab572799bc16093ffac08c2d260594 | |
| parent | 2778b992266b1ef6252cbb1a11a53e79114ae29c (diff) | |
| download | ppe42-gcc-fbf041b8155e2b3eb6300b1988aedbceb30501ee.tar.gz ppe42-gcc-fbf041b8155e2b3eb6300b1988aedbceb30501ee.zip | |
Aldy Hernandez <aldyh@redhat.com>
* config/rs6000/rs6000.c (rs6000_override_options): Move
*SUBTARGET_OVERRIDE_OPTIONS before the -m options.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55053 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/rs6000/rs6000.c | 14 |
2 files changed, 12 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 496d52bc104..ab1a59b1859 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-06-27 Aldy Hernandez <aldyh@redhat.com> + + * config/rs6000/rs6000.c (rs6000_override_options): Move + *SUBTARGET_OVERRIDE_OPTIONS before the -m options. + 2002-06-27 Bob Wilson <bob.wilson@acm.org> * config/xtensa/xtensa.md: Give "*xxx" names to all unnamed insn's. diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index d9501e6d74e..b57d85c1a3d 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -541,6 +541,13 @@ rs6000_override_options (default_cpu) } #endif +#ifdef SUBTARGET_OVERRIDE_OPTIONS + SUBTARGET_OVERRIDE_OPTIONS; +#endif +#ifdef SUBSUBTARGET_OVERRIDE_OPTIONS + SUBSUBTARGET_OVERRIDE_OPTIONS; +#endif + /* Set debug flags */ if (rs6000_debug_name) { @@ -596,13 +603,6 @@ rs6000_override_options (default_cpu) memcpy (rs6000_reg_names, alt_reg_names, sizeof (rs6000_reg_names)); #endif -#ifdef SUBTARGET_OVERRIDE_OPTIONS - SUBTARGET_OVERRIDE_OPTIONS; -#endif -#ifdef SUBSUBTARGET_OVERRIDE_OPTIONS - SUBSUBTARGET_OVERRIDE_OPTIONS; -#endif - /* Set TARGET_AIX_STRUCT_RET last, after the ABI is determined. If -maix-struct-return or -msvr4-struct-return was explicitly used, don't override with the ABI default. */ |

