From: H.J. Lu Date: Sun, 27 May 2007 07:21:58 +0000 (+0000) Subject: tree-vect-transform.c (vectorizable_conversion): Initialize tree_code variables to... X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8ff43db0f9b217bcdfd0743187a8b6920e68a190;p=platform%2Fupstream%2Fgcc.git tree-vect-transform.c (vectorizable_conversion): Initialize tree_code variables to ERROR_MARK. 2007-05-27 H.J. Lu * tree-vect-transform.c (vectorizable_conversion): Initialize tree_code variables to ERROR_MARK. (vectorizable_type_demotion): Likewise. (vectorizable_type_promotion): Likewise. From-SVN: r125107 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ab4fb2b..8edffc7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2007-05-27 H.J. Lu + + * tree-vect-transform.c (vectorizable_conversion): Initialize + tree_code variables to ERROR_MARK. + (vectorizable_type_demotion): Likewise. + (vectorizable_type_promotion): Likewise. + 2007-05-26 Uros Bizjak PR target/32065 diff --git a/gcc/tree-vect-transform.c b/gcc/tree-vect-transform.c index 30e7211..6108532 100644 --- a/gcc/tree-vect-transform.c +++ b/gcc/tree-vect-transform.c @@ -2007,7 +2007,7 @@ vectorizable_conversion (tree stmt, block_stmt_iterator * bsi, tree vec_oprnd0 = NULL_TREE, vec_oprnd1 = NULL_TREE; stmt_vec_info stmt_info = vinfo_for_stmt (stmt); loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info); - enum tree_code code, code1 = CODE_FOR_nothing, code2 = CODE_FOR_nothing; + enum tree_code code, code1 = ERROR_MARK, code2 = ERROR_MARK; tree decl1 = NULL_TREE, decl2 = NULL_TREE; tree new_temp; tree def, def_stmt; @@ -2694,7 +2694,7 @@ vectorizable_type_demotion (tree stmt, block_stmt_iterator *bsi, tree vec_oprnd0=NULL, vec_oprnd1=NULL; stmt_vec_info stmt_info = vinfo_for_stmt (stmt); loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info); - enum tree_code code, code1 = CODE_FOR_nothing; + enum tree_code code, code1 = ERROR_MARK; tree new_temp; tree def, def_stmt; enum vect_def_type dt0; @@ -2842,7 +2842,7 @@ vectorizable_type_promotion (tree stmt, block_stmt_iterator *bsi, tree vec_oprnd0=NULL, vec_oprnd1=NULL; stmt_vec_info stmt_info = vinfo_for_stmt (stmt); loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info); - enum tree_code code, code1 = CODE_FOR_nothing, code2 = CODE_FOR_nothing; + enum tree_code code, code1 = ERROR_MARK, code2 = ERROR_MARK; tree decl1 = NULL_TREE, decl2 = NULL_TREE; int op_type; tree def, def_stmt;