* call.c (resolve_args): Remove redundant test.

From-SVN: r105034
This commit is contained in:
Volker Reichelt 2005-10-06 14:03:36 +00:00 committed by Volker Reichelt
parent c40cb38da9
commit 88217f448d
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-10-06 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
* call.c (resolve_args): Remove redundant test.
2005-10-05 Paolo Bonzini <bonzini@gnu.org>
PR tree-optimization/21419

View File

@ -2689,7 +2689,7 @@ resolve_args (tree args)
{
tree arg = TREE_VALUE (t);
if (arg == error_mark_node || error_operand_p (arg))
if (error_operand_p (arg))
return error_mark_node;
else if (VOID_TYPE_P (TREE_TYPE (arg)))
{