From 1b44c9fe41e065721ab01b666bc6db8eaa5140ec Mon Sep 17 00:00:00 2001 From: Leo Tenenbaum Date: Mon, 30 Mar 2020 14:50:02 -0400 Subject: double => long double --- types.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'types.h') diff --git a/types.h b/types.h index 97c68d2..8b17619 100644 --- a/types.h +++ b/types.h @@ -25,7 +25,7 @@ For more information, please refer to */ /* NOTE: make sure you edit copy.c and cgen_recurse_subexprs/types when you make a change to expression-related types or type-related types in this file! */ -typedef long double Floating; /* OPTIM: Switch to double, but make sure floating-point literals are right */ +typedef double Floating; #if __STDC_VERSION__ >= 199901 || defined _MSC_VER @@ -366,7 +366,6 @@ typedef struct { U32 end; /* exclusive */ } SourcePos; -/* NOTE: Location is typedef'd in util/err.c */ typedef struct Token { TokenKind kind; SourcePos pos; -- cgit v1.2.3