diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2023-05-30 20:38:20 +0200 |
---|---|---|
committer | Uros Bizjak <ubizjak@gmail.com> | 2023-05-30 20:42:48 +0200 |
commit | 2720bbd597f56742a17119dfe80edc2ba86af255 (patch) | |
tree | 2872c4acda8b31466e83db1d03e8b91c79ceca91 /gcc | |
parent | e4398377ffca13d7af8cec46a59e0862132bdd78 (diff) | |
download | gcc-2720bbd597f56742a17119dfe80edc2ba86af255.zip gcc-2720bbd597f56742a17119dfe80edc2ba86af255.tar.gz gcc-2720bbd597f56742a17119dfe80edc2ba86af255.tar.bz2 |
i386: Fix misleading identation in i386-expand.cc [PR110041]
gcc/ChangeLog:
PR target/110041
* config/i386/i386-expand.cc (ix86_expand_vecop_qihi2):
Fix misleading identation.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/i386-expand.cc | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gcc/config/i386/i386-expand.cc b/gcc/config/i386/i386-expand.cc index 5d21810..70c6971 100644 --- a/gcc/config/i386/i386-expand.cc +++ b/gcc/config/i386/i386-expand.cc @@ -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)); |