From: Maciej W. Rozycki Date: Thu, 9 Jun 2022 13:34:34 +0000 (+0100) Subject: RISC-V: Use a tab rather than space with FSFLAGS X-Git-Tag: Thesis~5365 X-Git-Url: https://gcc.gnu.org/git/?a=commitdiff_plain;h=702a11ade2e87515a7dda1d1c028217bfe28e609;p=gcc.git RISC-V: Use a tab rather than space with FSFLAGS Consistently use a tab rather than a space as the separator between the assembly instruction mnemonic and its operand with FSFLAGS instructions produced with the unordered FP comparison RTL insns. gcc/ * config/riscv/riscv.md (*f_quiet4_default) (*f_quiet4_snan): Emit a tab rather than space with FSFLAGS. --- diff --git a/gcc/config/riscv/riscv.md b/gcc/config/riscv/riscv.md index b8ab0cf169a7..7745290383be 100644 --- a/gcc/config/riscv/riscv.md +++ b/gcc/config/riscv/riscv.md @@ -2344,7 +2344,7 @@ QUIET_COMPARISON)) (clobber (match_scratch:X 3 "=&r"))] "TARGET_HARD_FLOAT && ! HONOR_SNANS (mode)" - "frflags\t%3\n\tf.\t%0,%1,%2\n\tfsflags %3" + "frflags\t%3\n\tf.\t%0,%1,%2\n\tfsflags\t%3" [(set_attr "type" "fcmp") (set_attr "mode" "") (set (attr "length") (const_int 12))]) @@ -2357,7 +2357,7 @@ QUIET_COMPARISON)) (clobber (match_scratch:X 3 "=&r"))] "TARGET_HARD_FLOAT && HONOR_SNANS (mode)" - "frflags\t%3\n\tf.\t%0,%1,%2\n\tfsflags %3\n\tfeq.\tzero,%1,%2" + "frflags\t%3\n\tf.\t%0,%1,%2\n\tfsflags\t%3\n\tfeq.\tzero,%1,%2" [(set_attr "type" "fcmp") (set_attr "mode" "") (set (attr "length") (const_int 16))])