re PR c++/48277 (ICE for g++.dg/ext/altivec-cell-1.C on powerpc*-*-*)

PR c++/48277
	* semantics.c (finish_call_expr): Remove assert.

From-SVN: r171801
This commit is contained in:
Jason Merrill 2011-03-31 18:03:50 -04:00 committed by Jason Merrill
parent d4d73ce26b
commit c689d49e08
2 changed files with 3 additions and 6 deletions

View File

@ -1,5 +1,8 @@
2011-03-31 Jason Merrill <jason@redhat.com>
PR c++/48277
* semantics.c (finish_call_expr): Remove assert.
PR c++/48280
* method.c (defaultable_fn_check): Templates are not defaultable.

View File

@ -2154,12 +2154,6 @@ finish_call_expr (tree fn, VEC(tree,gc) **args, bool disallow_virtual,
{
if (TREE_CODE (result) == INDIRECT_REF)
result = TREE_OPERAND (result, 0);
gcc_assert (TREE_CODE (result) == CALL_EXPR
/* FIXME cp_build_function_call_vec should avoid argument
and return transformations like build_over_call does. */
|| TREE_CODE (result) == TARGET_EXPR
|| TREE_CODE (fn) == PSEUDO_DTOR_EXPR
|| errorcount);
result = build_call_vec (TREE_TYPE (result), orig_fn, orig_args);
KOENIG_LOOKUP_P (result) = koenig_p;
release_tree_vector (orig_args);