]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
i386: Fix up whitespace in assembly
authorJakub Jelinek <jakub@redhat.com>
Tue, 13 Jun 2023 16:39:45 +0000 (18:39 +0200)
committerJakub Jelinek <jakub@redhat.com>
Tue, 13 Jun 2023 16:39:45 +0000 (18:39 +0200)
I've noticed that standard_sse_constant_opcode emits some spurious
whitespace around tab, that isn't something which is done for
any other instruction and looks wrong.

2023-06-13  Jakub Jelinek  <jakub@redhat.com>

* config/i386/i386.cc (standard_sse_constant_opcode): Remove
superfluous spaces around \t for vpcmpeqd.

gcc/config/i386/i386.cc

index 3a1444db882c1d9e48488db3f7b4f621da06eea3..b20cb86b822e2e1ccb49c8f3f82fadf97e36afe8 100644 (file)
@@ -5358,19 +5358,19 @@ standard_sse_constant_opcode (rtx_insn *insn, rtx *operands)
       if (GET_MODE_SIZE (mode) == 64)
        {
          gcc_assert (TARGET_AVX512F);
-         return "vpcmpeqd \t %t0, %t0, %t0";
+         return "vpcmpeqd\t%t0, %t0, %t0";
        }
       else if (GET_MODE_SIZE (mode) == 32)
        {
          gcc_assert (TARGET_AVX);
-         return "vpcmpeqd \t %x0, %x0, %x0";
+         return "vpcmpeqd\t%x0, %x0, %x0";
        }
       gcc_unreachable ();
     }
   else if (vector_all_ones_zero_extend_quarter_operand (x, mode))
     {
       gcc_assert (TARGET_AVX512F);
-      return "vpcmpeqd \t %x0, %x0, %x0";
+      return "vpcmpeqd\t%x0, %x0, %x0";
     }
 
   gcc_unreachable ();