[gcc r12-3570] mips: Fix macro typo

Martin Liska marxin@gcc.gnu.org
Thu Sep 16 09:19:20 GMT 2021


https://gcc.gnu.org/g:8137be3958be4e5421c283cce3e5b50dbb80b84e

commit r12-3570-g8137be3958be4e5421c283cce3e5b50dbb80b84e
Author: Martin Liska <mliska@suse.cz>
Date:   Thu Sep 16 11:17:28 2021 +0200

    mips: Fix macro typo
    
    gcc/ChangeLog:
    
            * config/mips/netbsd.h: Fix typo in name of a macro.

Diff:
---
 gcc/config/mips/netbsd.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/config/mips/netbsd.h b/gcc/config/mips/netbsd.h
index 85c27793d4e..1c6a59d3c34 100644
--- a/gcc/config/mips/netbsd.h
+++ b/gcc/config/mips/netbsd.h
@@ -87,7 +87,7 @@ along with GCC; see the file COPYING3.  If not see
       else if (mips_isa >= MIPS_ISA_MIPS32			\
 	       && mips_isa < MIPS_ISA_MIPS64)			\
 	builtin_define ("__mips=32");				\
-      else if (mips_isa >= MIPS_ISA_64)				\
+      else if (mips_isa >= MIPS_ISA_MIPS64)			\
 	builtin_define ("__mips=64");				\
       if (mips_isa_rev > 0)					\
         builtin_define_with_int_value ("__mips_isa_rev",	\


More information about the Gcc-cvs mailing list