31 lines
1.0 KiB
Diff
31 lines
1.0 KiB
Diff
From 72f18deb0b8e59cc23f25cb99b59a25a0a1d99c7 Mon Sep 17 00:00:00 2001
|
|
From: Xi Ruoyao <xry111@xry111.site>
|
|
Date: Thu, 21 Mar 2024 04:01:17 +0800
|
|
Subject: [PATCH 154/188] LoongArch: Fix a typo [PR 114407]
|
|
|
|
gcc/ChangeLog:
|
|
|
|
PR target/114407
|
|
* config/loongarch/loongarch-opts.cc (loongarch_config_target):
|
|
Fix typo in diagnostic message, enabing -> enabling.
|
|
---
|
|
gcc/config/loongarch/loongarch-opts.cc | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/gcc/config/loongarch/loongarch-opts.cc b/gcc/config/loongarch/loongarch-opts.cc
|
|
index 2ea3972d1..bdecfaf49 100644
|
|
--- a/gcc/config/loongarch/loongarch-opts.cc
|
|
+++ b/gcc/config/loongarch/loongarch-opts.cc
|
|
@@ -362,7 +362,7 @@ config_target_isa:
|
|
gcc_assert (constrained.simd);
|
|
|
|
inform (UNKNOWN_LOCATION,
|
|
- "enabing %qs promotes %<%s%s%> to %<%s%s%>",
|
|
+ "enabling %qs promotes %<%s%s%> to %<%s%s%>",
|
|
loongarch_isa_ext_strings[t.isa.simd],
|
|
OPTSTR_ISA_EXT_FPU, loongarch_isa_ext_strings[t.isa.fpu],
|
|
OPTSTR_ISA_EXT_FPU, loongarch_isa_ext_strings[ISA_EXT_FPU64]);
|
|
--
|
|
2.43.0
|
|
|