34 lines
1.2 KiB
Diff
34 lines
1.2 KiB
Diff
From 4d569c5fde85ca426eecf57119048ec25f048758 Mon Sep 17 00:00:00 2001
|
|
From: Xi Ruoyao <xry111@xry111.site>
|
|
Date: Fri, 29 Dec 2023 20:04:34 +0800
|
|
Subject: [PATCH 091/188] LoongArch: Fix the format of
|
|
bstrins_<mode>_for_ior_mask condition (NFC)
|
|
|
|
gcc/ChangeLog:
|
|
|
|
* config/loongarch/loongarch.md (bstrins_<mode>_for_ior_mask):
|
|
For the condition, remove unneeded trailing "\" and move "&&" to
|
|
follow GNU coding style. NFC.
|
|
---
|
|
gcc/config/loongarch/loongarch.md | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/gcc/config/loongarch/loongarch.md b/gcc/config/loongarch/loongarch.md
|
|
index 3c61a0cf4..996df66e8 100644
|
|
--- a/gcc/config/loongarch/loongarch.md
|
|
+++ b/gcc/config/loongarch/loongarch.md
|
|
@@ -1486,8 +1486,8 @@
|
|
(match_operand:GPR 2 "const_int_operand"))
|
|
(and:GPR (match_operand:GPR 3 "register_operand")
|
|
(match_operand:GPR 4 "const_int_operand"))))]
|
|
- "loongarch_pre_reload_split () && \
|
|
- loongarch_use_bstrins_for_ior_with_mask (<MODE>mode, operands)"
|
|
+ "loongarch_pre_reload_split ()
|
|
+ && loongarch_use_bstrins_for_ior_with_mask (<MODE>mode, operands)"
|
|
"#"
|
|
"&& true"
|
|
[(set (match_dup 0) (match_dup 1))
|
|
--
|
|
2.43.0
|
|
|