diff options
author | mpf <mpf@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-11-21 16:57:55 +0000 |
---|---|---|
committer | mpf <mpf@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-11-21 16:57:55 +0000 |
commit | d745b4664702b1bdbdeedcd57d397845853e6819 (patch) | |
tree | 78075f943818b6587f81f0307e73e8e2387509d4 /gcc/configure | |
parent | caa5509eb09ac5b5e6d26730c3907f6ab78b0929 (diff) | |
download | gcc-d745b4664702b1bdbdeedcd57d397845853e6819.tar.gz |
Refine configure guard for MIPS .module availability
gcc/
* configure.ac: When checking for MIPS .module support ensure that
o32 FPXX is supported to avoid a second configure check.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@217939 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/configure')
-rwxr-xr-x | gcc/configure | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/configure b/gcc/configure index 31848fd3de0..66c6a18dd4e 100755 --- a/gcc/configure +++ b/gcc/configure @@ -26211,8 +26211,9 @@ if test "${gcc_cv_as_mips_dot_module+set}" = set; then : else gcc_cv_as_mips_dot_module=no if test x$gcc_cv_as != x; then - $as_echo '.module fp=32' > conftest.s - if { ac_try='$gcc_cv_as $gcc_cv_as_flags -o conftest.o conftest.s >&5' + $as_echo '.module mips2 + .module fp=xx' > conftest.s + if { ac_try='$gcc_cv_as $gcc_cv_as_flags -32 -o conftest.o conftest.s >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5 (eval $ac_try) 2>&5 ac_status=$? |