Commit c689d49e by Jason Merrill Committed by Jason Merrill

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
parent d4d73ce2
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.
......
......@@ -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);
......
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