aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYunQiang Su <syq@gcc.gnu.org>2024-01-30 00:26:28 +0800
committerYunQiang Su <syq@gcc.gnu.org>2024-01-30 00:32:09 +0800
commit8e84b4fad149b9b9544c7b1fc61a45cf6139176e (patch)
tree252f77b41f9373d7a4c16ca544fe4f9330163344
parentbad991a1c5960e90c4686a9362a1258ef29e195b (diff)
downloadgcc-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-xgcc/configure2
-rw-r--r--gcc/configure.ac2
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