diff options
author | YunQiang Su <syq@gcc.gnu.org> | 2024-01-30 00:26:28 +0800 |
---|---|---|
committer | YunQiang Su <syq@gcc.gnu.org> | 2024-01-30 00:32:09 +0800 |
commit | 8e84b4fad149b9b9544c7b1fc61a45cf6139176e (patch) | |
tree | 252f77b41f9373d7a4c16ca544fe4f9330163344 | |
parent | bad991a1c5960e90c4686a9362a1258ef29e195b (diff) | |
download | gcc-8e84b4fad149b9b9544c7b1fc61a45cf6139176e.zip gcc-8e84b4fad149b9b9544c7b1fc61a45cf6139176e.tar.gz gcc-8e84b4fad149b9b9544c7b1fc61a45cf6139176e.tar.bz2 |
MIPS: Fix typo in gcc/configure.ac: gcc_cv_as_mips_explicit
gcc_cv_as_mips_explicit should be gcc_cv_as_mips_explicit_relocs.
This was introduced in commit
58af788d1d0825187def434c95cab35a690a31b0.
gcc
PR target/113655
* configure.ac: Fix typo gcc_cv_as_mips_explicit should be
gcc_cv_as_mips_explicit_relocs.
* configure: Regnerated.
-rwxr-xr-x | gcc/configure | 2 | ||||
-rw-r--r-- | gcc/configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/configure b/gcc/configure index 578c72d..c83e09b 100755 --- a/gcc/configure +++ b/gcc/configure @@ -30417,7 +30417,7 @@ fi fi - if test x$gcc_cv_as_mips_explicit = xno; then \ + if test x$gcc_cv_as_mips_explicit_relocs = xno; then \ $as_echo "#define MIPS_EXPLICIT_RELOCS MIPS_EXPLICIT_RELOCS_NONE" >>confdefs.h diff --git a/gcc/configure.ac b/gcc/configure.ac index 5cc9338..239856a 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -5255,7 +5255,7 @@ LCF0: [Define if assembler supports %reloc.])]) fi - if test x$gcc_cv_as_mips_explicit = xno; then \ + if test x$gcc_cv_as_mips_explicit_relocs = xno; then \ AC_DEFINE(MIPS_EXPLICIT_RELOCS, MIPS_EXPLICIT_RELOCS_NONE, [Define if assembler supports %reloc.]) fi |