From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1256) id 5E6C13856DEB; Wed, 27 Jul 2022 10:17:09 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5E6C13856DEB MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Maciej W. Rozycki To: gcc-cvs@gcc.gnu.org Subject: [gcc r11-10179] RISC-V: Remove duplicate backslashes from `stack_protect_set_' X-Act-Checkin: gcc X-Git-Author: Maciej W. Rozycki X-Git-Refname: refs/heads/releases/gcc-11 X-Git-Oldrev: b05ef9d5b0beb741f469818ed2460c65215fd995 X-Git-Newrev: b96e14c6647eaedc5f389ff50f7b08fd753493c2 Message-Id: <20220727101709.5E6C13856DEB@sourceware.org> Date: Wed, 27 Jul 2022 10:17:09 +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: Wed, 27 Jul 2022 10:17:09 -0000 https://gcc.gnu.org/g:b96e14c6647eaedc5f389ff50f7b08fd753493c2 commit r11-10179-gb96e14c6647eaedc5f389ff50f7b08fd753493c2 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. (cherry picked from commit 3cf07cc5e51c833f39f5bad5ca6fbe23c853a214) 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 c3687d57047..3af34de063c 100644 --- a/gcc/config/riscv/riscv.md +++ b/gcc/config/riscv/riscv.md @@ -2558,7 +2558,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"