diff options
Diffstat (limited to 'gcc/optabs-tree.c')
-rw-r--r-- | gcc/optabs-tree.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/gcc/optabs-tree.c b/gcc/optabs-tree.c index 47a2aef..a510c16 100644 --- a/gcc/optabs-tree.c +++ b/gcc/optabs-tree.c @@ -146,17 +146,6 @@ optab_for_tree_code (enum tree_code code, const_tree type, case FMA_EXPR: return fma_optab; - case REDUC_MAX_EXPR: - return TYPE_UNSIGNED (type) - ? reduc_umax_scal_optab : reduc_smax_scal_optab; - - case REDUC_MIN_EXPR: - return TYPE_UNSIGNED (type) - ? reduc_umin_scal_optab : reduc_smin_scal_optab; - - case REDUC_PLUS_EXPR: - return reduc_plus_scal_optab; - case VEC_WIDEN_MULT_HI_EXPR: return TYPE_UNSIGNED (type) ? vec_widen_umult_hi_optab : vec_widen_smult_hi_optab; |