aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXi Ruoyao <xry111@xry111.site>2023-11-19 01:41:12 +0800
committerXi Ruoyao <xry111@xry111.site>2023-11-19 01:45:29 +0800
commit84c5dede83de84e0a06b018103be0b9ede5b04a1 (patch)
tree9c3ee5b84be14058c9d94620b312c8bd7227bcb9
parent51bda9f136c03c948a9e95b60cb8b4257fb427be (diff)
downloadgcc-84c5dede83de84e0a06b018103be0b9ede5b04a1.zip
gcc-84c5dede83de84e0a06b018103be0b9ede5b04a1.tar.gz
gcc-84c5dede83de84e0a06b018103be0b9ede5b04a1.tar.bz2
LoongArch: Fix "-mexplict-relocs=none -mcmodel=medium" producing %call36 when the assembler does not support it
Even if !HAVE_AS_SUPPORT_CALL36, const_call_insn_operand should still return false when -mexplict-relocs=none -mcmodel=medium to make loongarch_legitimize_call_address emit la.local or la.global. gcc/ChangeLog: * config/loongarch/predicates.md (const_call_insn_operand): Remove buggy "HAVE_AS_SUPPORT_CALL36" conditions. Change "1" to "true" to make the coding style consistent.
-rw-r--r--gcc/config/loongarch/predicates.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/config/loongarch/predicates.md b/gcc/config/loongarch/predicates.md
index 56f7c48..d02e846 100644
--- a/gcc/config/loongarch/predicates.md
+++ b/gcc/config/loongarch/predicates.md
@@ -444,21 +444,19 @@
case SYMBOL_PCREL:
if (TARGET_CMODEL_EXTREME
|| (TARGET_CMODEL_MEDIUM
- && HAVE_AS_SUPPORT_CALL36
&& (la_opt_explicit_relocs == EXPLICIT_RELOCS_NONE)))
return false;
else
- return 1;
+ return true;
case SYMBOL_GOT_DISP:
if (TARGET_CMODEL_EXTREME
|| !flag_plt
|| (flag_plt && TARGET_CMODEL_MEDIUM
- && HAVE_AS_SUPPORT_CALL36
&& (la_opt_explicit_relocs == EXPLICIT_RELOCS_NONE)))
return false;
else
- return 1;
+ return true;
default:
return false;