diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rwxr-xr-x | gcc/configure | 2 | ||||
-rw-r--r-- | gcc/configure.ac | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 16b1dfc..9e5cf17 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-11-15 David Edelsohn <edelsohn@gnu.org> + + * configure.ac: Use .machine power5 not power5x. + * configure: Regenerate. + 2005-11-15 Mike Stump <mrs@apple.com> * c-decl.c (lookup_name_two): Add. diff --git a/gcc/configure b/gcc/configure index 37d7ac6..f9bb1e9 100755 --- a/gcc/configure +++ b/gcc/configure @@ -15580,7 +15580,7 @@ fi *-*-aix*) conftest_s=' .machine "pwr5x" .csect .text[PR] frin 1,1';; - *) conftest_s=' .machine power5x + *) conftest_s=' .machine power5 .text frin 1,1';; esac diff --git a/gcc/configure.ac b/gcc/configure.ac index 4669488..169a7cb 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -2766,7 +2766,7 @@ foo: nop *-*-aix*) conftest_s=' .machine "pwr5x" .csect .text[[PR]] frin 1,1';; - *) conftest_s=' .machine power5x + *) conftest_s=' .machine power5 .text frin 1,1';; esac |