(yylex): Add new arg, TYPE, to call to build_complex.

From-SVN: r12864
This commit is contained in:
Richard Kenner 1996-09-29 19:02:58 -04:00
parent b217d7febe
commit 7791247664

View File

@ -1465,7 +1465,8 @@ yylex ()
/* Create a node with determined type and value. */
if (imag)
yylval.ttype = build_complex (convert (type, integer_zero_node),
yylval.ttype = build_complex (NULL_TREE,
convert (type, integer_zero_node),
build_real (type, value));
else
yylval.ttype = build_real (type, value);
@ -1634,8 +1635,9 @@ yylex ()
if (TYPE_PRECISION (type)
<= TYPE_PRECISION (integer_type_node))
yylval.ttype
= build_complex (integer_zero_node,
convert (integer_type_node, yylval.ttype));
= build_complex (NULL_TREE, integer_zero_node,
convert (integer_type_node,
yylval.ttype));
else
error ("complex integer constant is too wide for `complex int'");
}