mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 05:20:24 +08:00
(yylex): Add new arg, TYPE, to call to build_complex.
From-SVN: r12864
This commit is contained in:
parent
b217d7febe
commit
7791247664
@ -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'");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user