Commit d6e1acf6 by Jakub Jelinek Committed by Jakub Jelinek

tree-vect-patterns.c (vect_operation_fits_smaller_type): Initialize *op0 and…

tree-vect-patterns.c (vect_operation_fits_smaller_type): Initialize *op0 and *op1 to NULL_TREE first to avoid warnings.

	* tree-vect-patterns.c (vect_operation_fits_smaller_type): Initialize
	*op0 and *op1 to NULL_TREE first to avoid warnings.
	* calls.c (initialize_argument_information): Initialize base to avoid
	warnings.

From-SVN: r182590
parent bccc50d4
2011-12-21 Jakub Jelinek <jakub@redhat.com> 2011-12-21 Jakub Jelinek <jakub@redhat.com>
* tree-vect-patterns.c (vect_operation_fits_smaller_type): Initialize
*op0 and *op1 to NULL_TREE first to avoid warnings.
* calls.c (initialize_argument_information): Initialize base to avoid
warnings.
PR middle-end/51644 PR middle-end/51644
PR middle-end/51647 PR middle-end/51647
* tree-eh.c (decide_copy_try_finally): At -O0, return true * tree-eh.c (decide_copy_try_finally): At -O0, return true
...@@ -1157,7 +1157,7 @@ initialize_argument_information (int num_actuals ATTRIBUTE_UNUSED, ...@@ -1157,7 +1157,7 @@ initialize_argument_information (int num_actuals ATTRIBUTE_UNUSED,
type, argpos < n_named_args)) type, argpos < n_named_args))
{ {
bool callee_copies; bool callee_copies;
tree base; tree base = NULL_TREE;
callee_copies callee_copies
= reference_callee_copied (args_so_far_pnt, TYPE_MODE (type), = reference_callee_copied (args_so_far_pnt, TYPE_MODE (type),
......
...@@ -900,6 +900,8 @@ vect_operation_fits_smaller_type (gimple stmt, tree def, tree *new_type, ...@@ -900,6 +900,8 @@ vect_operation_fits_smaller_type (gimple stmt, tree def, tree *new_type,
loop_vec_info loop_info = STMT_VINFO_LOOP_VINFO (vinfo_for_stmt (stmt)); loop_vec_info loop_info = STMT_VINFO_LOOP_VINFO (vinfo_for_stmt (stmt));
struct loop *loop = LOOP_VINFO_LOOP (loop_info); struct loop *loop = LOOP_VINFO_LOOP (loop_info);
*op0 = NULL_TREE;
*op1 = NULL_TREE;
*new_def_stmt = NULL; *new_def_stmt = NULL;
if (!is_gimple_assign (stmt)) if (!is_gimple_assign (stmt))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment