diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2023-05-26 07:30:24 +0200 |
---|---|---|
committer | Uros Bizjak <ubizjak@gmail.com> | 2023-05-26 07:30:24 +0200 |
commit | 0368fc54bc11f15bfa0ed9913fd0017815dfaa5d (patch) | |
tree | 0922ef592f232dfe44101062d386e91a4dbc95d1 /gcc | |
parent | 4fb66b2329319e9b47e89200d613b6f741a114fc (diff) | |
download | gcc-0368fc54bc11f15bfa0ed9913fd0017815dfaa5d.zip gcc-0368fc54bc11f15bfa0ed9913fd0017815dfaa5d.tar.gz gcc-0368fc54bc11f15bfa0ed9913fd0017815dfaa5d.tar.bz2 |
i386: Do not disable call to ix86_expand_vecop_qihi2
gcc/ChangeLog:
* config/i386/i386-expand.cc (ix86_expand_vecop_qihi):
Do not disable call to ix86_expand_vecop_qihi2.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/i386-expand.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/i386-expand.cc b/gcc/config/i386/i386-expand.cc index 7302f27..0d8953b 100644 --- a/gcc/config/i386/i386-expand.cc +++ b/gcc/config/i386/i386-expand.cc @@ -23457,7 +23457,7 @@ ix86_expand_vecop_qihi (enum rtx_code code, rtx dest, rtx op1, rtx op2) && ix86_expand_vec_shift_qihi_constant (code, dest, op1, op2)) return; - if (0 && ix86_expand_vecop_qihi2 (code, dest, op1, op2)) + if (ix86_expand_vecop_qihi2 (code, dest, op1, op2)) return; switch (qimode) |