diff options
author | Maciej W. Rozycki <macro@embecosm.com> | 2022-07-27 11:09:43 +0100 |
---|---|---|
committer | Maciej W. Rozycki <macro@embecosm.com> | 2022-07-27 11:09:43 +0100 |
commit | 3cf07cc5e51c833f39f5bad5ca6fbe23c853a214 (patch) | |
tree | 516525023646fd06303c31a0cbb68be490e3ac55 /gcc | |
parent | 98cf74a2ad893d26de81911e571b634a282a61aa (diff) | |
download | gcc-3cf07cc5e51c833f39f5bad5ca6fbe23c853a214.zip gcc-3cf07cc5e51c833f39f5bad5ca6fbe23c853a214.tar.gz gcc-3cf07cc5e51c833f39f5bad5ca6fbe23c853a214.tar.bz2 |
RISC-V: Remove duplicate backslashes from `stack_protect_set_<mode>'
Remove redundant duplicate backslash characters from \t sequences in the
output pattern of the `stack_protect_set_<mode>' RTL insn.
gcc/
* config/riscv/riscv.md (stack_protect_set_<mode>): Remove
duplicate backslashes.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/riscv/riscv.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/riscv/riscv.md b/gcc/config/riscv/riscv.md index 308b64d..aa43d5f 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))] "" - "<load>\\t%2, %1\;<store>\\t%2, %0\;li\t%2, 0" + "<load>\t%2, %1\;<store>\t%2, %0\;li\t%2, 0" [(set_attr "length" "12")]) (define_expand "stack_protect_test" |