From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id B53B8385AE6B; Thu, 28 Jul 2022 12:10:58 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B53B8385AE6B Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Martin Liska To: gcc-cvs@gcc.gnu.org Subject: [gcc/devel/sphinx] RISC-V: Remove duplicate backslashes from `stack_protect_set_' X-Act-Checkin: gcc X-Git-Author: Maciej W. Rozycki X-Git-Refname: refs/heads/devel/sphinx X-Git-Oldrev: 449563eb5eedcabefa34441936c2f6bac710d68f X-Git-Newrev: 14ab26cfa5970b98f170c4715619f95eb6c4c96a Message-Id: <20220728121058.B53B8385AE6B@sourceware.org> Date: Thu, 28 Jul 2022 12:10:58 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Jul 2022 12:10:58 -0000 https://gcc.gnu.org/g:14ab26cfa5970b98f170c4715619f95eb6c4c96a commit 14ab26cfa5970b98f170c4715619f95eb6c4c96a Author: Maciej W. Rozycki Date: Wed Jul 27 11:09:43 2022 +0100 RISC-V: Remove duplicate backslashes from `stack_protect_set_' Remove redundant duplicate backslash characters from \t sequences in the output pattern of the `stack_protect_set_' RTL insn. gcc/ * config/riscv/riscv.md (stack_protect_set_): Remove duplicate backslashes. Diff: --- gcc/config/riscv/riscv.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/riscv/riscv.md b/gcc/config/riscv/riscv.md index 308b64dd30d..aa43d5f91a0 100644 --- a/gcc/config/riscv/riscv.md +++ b/gcc/config/riscv/riscv.md @@ -2848,7 +2848,7 @@ UNSPEC_SSP_SET)) (set (match_scratch:GPR 2 "=&r") (const_int 0))] "" - "\\t%2, %1\;\\t%2, %0\;li\t%2, 0" + "\t%2, %1\;\t%2, %0\;li\t%2, 0" [(set_attr "length" "12")]) (define_expand "stack_protect_test"