]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
i386: Fix misleading identation in i386-expand.cc [PR110041]
authorUros Bizjak <ubizjak@gmail.com>
Tue, 30 May 2023 18:38:20 +0000 (20:38 +0200)
committerUros Bizjak <ubizjak@gmail.com>
Tue, 30 May 2023 18:42:48 +0000 (20:42 +0200)
gcc/ChangeLog:

PR target/110041
* config/i386/i386-expand.cc (ix86_expand_vecop_qihi2):
Fix misleading identation.

gcc/config/i386/i386-expand.cc

index 5d21810669a2a36b1f7d358a38e16670beb3c5dd..70c6971ac03f8525192f2f8b630ea3815c8f871a 100644 (file)
@@ -23391,18 +23391,18 @@ ix86_expand_vecop_qihi2 (enum rtx_code code, rtx dest, rtx op1, rtx op2)
   else
     hop2 = qop2;
 
-    if (code != MULT && op2vec)
-      {
-       /* Expand vashr/vlshr/vashl.  */
-       hdest = gen_reg_rtx (himode);
-       emit_insn (gen_rtx_SET (hdest,
-                               simplify_gen_binary (code, himode,
-                                                    hop1, hop2)));
-      }
-    else
-      /* Expand mult/ashr/lshr/ashl.  */
-      hdest = expand_simple_binop (himode, code, hop1, hop2,
-                                  NULL_RTX, 1, OPTAB_DIRECT);
+  if (code != MULT && op2vec)
+    {
+      /* Expand vashr/vlshr/vashl.  */
+      hdest = gen_reg_rtx (himode);
+      emit_insn (gen_rtx_SET (hdest,
+                             simplify_gen_binary (code, himode,
+                                                  hop1, hop2)));
+    }
+  else
+    /* Expand mult/ashr/lshr/ashl.  */
+    hdest = expand_simple_binop (himode, code, hop1, hop2,
+                                NULL_RTX, 1, OPTAB_DIRECT);
 
   if (gen_truncate)
     emit_insn (gen_truncate (dest, hdest));