diff options
| author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-13 06:57:13 +0000 |
|---|---|---|
| committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-13 06:57:13 +0000 |
| commit | 7908b1a117f2d84dbafc4f3dc728bef932f33b4b (patch) | |
| tree | 6a6a36571a963118b424ed674a4062ea19fbd019 | |
| parent | dbc6b055a5187a4e9b6365f998c8a92b8928c2a3 (diff) | |
| download | ppe42-gcc-7908b1a117f2d84dbafc4f3dc728bef932f33b4b.tar.gz ppe42-gcc-7908b1a117f2d84dbafc4f3dc728bef932f33b4b.zip | |
2004-07-13 Anthony Heading <aheading@jpmorgan.com>
* configure.ac (gcc_cv_as_offsetable_lo10: Fix a typo.
* configure: Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84603 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 317e736a0e5..8372af0892a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-07-13 Anthony Heading <aheading@jpmorgan.com> + + * configure.ac (gcc_cv_as_offsetable_lo10: Fix a typo. + * configure: Rebuilt. + 2004-07-13 Richard Sandiford <rsandifo@redhat.com> * doc/invoke.texi: Remove documentation for MIPS -mrnames option. diff --git a/gcc/configure b/gcc/configure index 5bcc13a9d85..d30e786d9a1 100755 --- a/gcc/configure +++ b/gcc/configure @@ -11267,7 +11267,7 @@ else (exit $ac_status); }; } then if test x$gcc_cv_objdump != x \ - && %gcc_cv_objdump -s -j .text conftest.o 2> /dev/null \ + && $gcc_cv_objdump -s -j .text conftest.o 2> /dev/null \ | grep ' 82106000 82106000' > /dev/null 2>&1; then gcc_cv_as_offsetable_lo10=yes fi diff --git a/gcc/configure.ac b/gcc/configure.ac index 7a2fbb7b055..d37db09edfc 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -2589,7 +2589,7 @@ foo: or %g1, %lo(ab) + 12, %g1 or %g1, %lo(ab + 12), %g1], [if test x$gcc_cv_objdump != x \ - && %gcc_cv_objdump -s -j .text conftest.o 2> /dev/null \ + && $gcc_cv_objdump -s -j .text conftest.o 2> /dev/null \ | grep ' 82106000 82106000' > /dev/null 2>&1; then gcc_cv_as_offsetable_lo10=yes fi], |

