From: Maciej W. Rozycki Date: Wed, 27 Jul 2022 10:09:43 +0000 (+0100) Subject: RISC-V: Remove duplicate backslashes from `stack_protect_set_' X-Git-Tag: basepoints/gcc-14~5349 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3cf07cc5e51c833f39f5bad5ca6fbe23c853a214;p=thirdparty%2Fgcc.git 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 --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"