diff options
author | Ying Huang <ying.huang@oss.cipunited.com> | 2023-11-10 14:03:17 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2023-11-10 14:03:17 +0000 |
commit | d173146d9b0051e9d691258ac68b9bd5575d0651 (patch) | |
tree | 26821429ecb563d2b930d2582ab89394826d4afd /gas/configure.ac | |
parent | e922d1eaa3774a68c96eae01e0fd08f8a30cda8c (diff) | |
download | gdb-d173146d9b0051e9d691258ac68b9bd5575d0651.zip gdb-d173146d9b0051e9d691258ac68b9bd5575d0651.tar.gz gdb-d173146d9b0051e9d691258ac68b9bd5575d0651.tar.bz2 |
MIPS: Change all E_MIPS_* to EF_MIPS_*
Diffstat (limited to 'gas/configure.ac')
-rw-r--r-- | gas/configure.ac | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gas/configure.ac b/gas/configure.ac index 3a04c39..d0b4cfb 100644 --- a/gas/configure.ac +++ b/gas/configure.ac @@ -372,14 +372,14 @@ changequote([,])dnl AC_MSG_ERROR($target_cpu isn't a supported MIPS CPU name) ;; esac - # See whether it's appropriate to set E_MIPS_ABI_O32 for o32 + # See whether it's appropriate to set EF_MIPS_ABI_O32 for o32 # binaries. It's a GNU extension that some OSes don't understand. case ${target} in *-*-irix*) - use_e_mips_abi_o32=0 + use_ef_mips_abi_o32=0 ;; *) - use_e_mips_abi_o32=1 + use_ef_mips_abi_o32=1 ;; esac # Decide whether to generate 32-bit or 64-bit code by default. @@ -410,8 +410,8 @@ changequote([,])dnl esac AC_DEFINE_UNQUOTED(MIPS_CPU_STRING_DEFAULT, "$mips_cpu", [Default CPU for MIPS targets. ]) - AC_DEFINE_UNQUOTED(USE_E_MIPS_ABI_O32, $use_e_mips_abi_o32, - [Allow use of E_MIPS_ABI_O32 on MIPS targets. ]) + AC_DEFINE_UNQUOTED(USE_EF_MIPS_ABI_O32, $use_ef_mips_abi_o32, + [Allow use of EF_MIPS_ABI_O32 on MIPS targets. ]) AC_DEFINE_UNQUOTED(MIPS_DEFAULT_64BIT, $mips_default_64bit, [Generate 64-bit code by default on MIPS targets. ]) AC_DEFINE_UNQUOTED(MIPS_DEFAULT_ABI, $mips_default_abi, |