Commit 3bbb7316 by Jason Merrill Committed by Jason Merrill

typeck.c (build_conditional_expr): Only fold if ifexp is an INTEGER_CST.

	* typeck.c (build_conditional_expr): Only fold if ifexp is an
	INTEGER_CST.

From-SVN: r22794
parent c3437800
1998-10-03 Jason Merrill <jason@yorick.cygnus.com>
* typeck.c (build_conditional_expr): Only fold if ifexp is an
INTEGER_CST.
* decl2.c (finish_vtable_vardecl): Check DECL_INTERFACE_KNOWN
instead of linkage.
......
......@@ -5345,7 +5345,7 @@ build_conditional_expr (ifexp, op1, op2)
op2 = convert_for_initialization
(NULL_TREE, result_type, op2, LOOKUP_NORMAL, "converting", NULL_TREE, 0);
if (TREE_CONSTANT (ifexp))
if (TREE_CODE (ifexp) == INTEGER_CST)
return integer_zerop (ifexp) ? op2 : op1;
return convert_from_reference
......
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