Commit 81bafd36 by Ian Lance Taylor Committed by Ian Lance Taylor

re PR middle-end/13127 (Inlining causes spurious "might be used uninitialized" warnings)

	PR middle-end/13127:
	* tree-inline.c (expand_call_inline): Set TREE_NO_WARNING on
	a variable set to the return value of the inlined function.

From-SVN: r93765
parent edb81165
2005-01-17 Ian Lance Taylor <ian@airs.com>
PR middle-end/13127:
* tree-inline.c (expand_call_inline): Set TREE_NO_WARNING on
a variable set to the return value of the inlined function.
2005-01-17 Mark Dettinger <dettinge@de.ibm.com>
* rtlanal.c (rtx_cost): Assign cost of 0 to a SUBREG
......
......@@ -1580,7 +1580,18 @@ expand_call_inline (tree *tp, int *walk_subtrees, void *data)
/* Find the lhs to which the result of this call is assigned. */
modify_dest = tsi_stmt (id->tsi);
if (TREE_CODE (modify_dest) == MODIFY_EXPR)
modify_dest = TREE_OPERAND (modify_dest, 0);
{
modify_dest = TREE_OPERAND (modify_dest, 0);
/* The function which we are inlining might not return a value,
in which case we should issue a warning that the function
does not return a value. In that case the optimizers will
see that the variable to which the value is assigned was not
initialized. We do not want to issue a warning about that
uninitialized variable. */
if (DECL_P (modify_dest))
TREE_NO_WARNING (modify_dest) = 1;
}
else
modify_dest = NULL;
......
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