From: Richard Henderson Date: Thu, 19 Jul 2012 18:53:20 +0000 (-0700) Subject: Fix 0 != CODE_FOR_nothing thinko X-Git-Tag: releases/gcc-4.8.0~4391 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dee54b6eb05fb873147a6a6c6156b23f4e322214;p=thirdparty%2Fgcc.git Fix 0 != CODE_FOR_nothing thinko * expr.c (store_constructor): Initialize icode with CODE_FOR_nothing. * tree-vect-stmts.c (vectorizable_operation): Use LAST_INSN_CODE for dummy != CODE_FOR_nothing value. From-SVN: r189672 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9466848b5c68..d8b6a4dbc740 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2012-07-19 Richard Henderson + + * expr.c (store_constructor): Initialize icode with CODE_FOR_nothing. + * tree-vect-stmts.c (vectorizable_operation): Use LAST_INSN_CODE for + dummy != CODE_FOR_nothing value. + 2012-07-19 Uros Bizjak * doc/tm.texi.in (MODE_AFTER): Add entity as the first macro argument. diff --git a/gcc/expr.c b/gcc/expr.c index 5aec53e1737e..965086328546 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -6130,7 +6130,7 @@ store_constructor (tree exp, rtx target, int cleared, HOST_WIDE_INT size) constructor_elt *ce; int i; int need_to_clear; - int icode = 0; + int icode = CODE_FOR_nothing; tree elttype = TREE_TYPE (type); int elt_size = tree_low_cst (TYPE_SIZE (elttype), 1); enum machine_mode eltmode = TYPE_MODE (elttype); diff --git a/gcc/tree-vect-stmts.c b/gcc/tree-vect-stmts.c index fb05063579f8..bb42cbca5792 100644 --- a/gcc/tree-vect-stmts.c +++ b/gcc/tree-vect-stmts.c @@ -3531,7 +3531,7 @@ vectorizable_operation (gimple stmt, gimple_stmt_iterator *gsi, if (code == MULT_HIGHPART_EXPR) { if (can_mult_highpart_p (vec_mode, TYPE_UNSIGNED (vectype))) - icode = 0; + icode = LAST_INSN_CODE; else icode = CODE_FOR_nothing; }