From 8137be3958be4e5421c283cce3e5b50dbb80b84e Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Thu, 16 Sep 2021 11:17:28 +0200 Subject: [PATCH] mips: Fix macro typo gcc/ChangeLog: * config/mips/netbsd.h: Fix typo in name of a macro. --- 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 85c27793d4eb..1c6a59d3c343 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", \ -- 2.47.2