From e6084c9068145065a9d861b3bd9d08c89008d544 Mon Sep 17 00:00:00 2001 From: kenner Date: Tue, 21 Feb 1995 11:16:29 +0000 Subject: [PATCH] (yylex): For float, build constant in long double. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8980 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/c-lex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/c-lex.c b/gcc/c-lex.c index 8f8c64a6731..f5d3b40a9a1 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -1271,7 +1271,7 @@ yylex () if (floatflag != NOT_FLOAT) { - tree type = double_type_node; + tree type = long_double_type_node; int garbage_chars = 0, exceeds_double = 0; int imag = 0; REAL_VALUE_TYPE value; -- 2.11.4.GIT