From f7b3e616c3d16a85e0cc1de32e37e036c964294a Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Thu, 10 Mar 2011 18:51:15 -0500 Subject: Represent 'unit' as C 'int'; change pattern match compilation to avoid 'goto'; change Postgres prepared statement compilation to make life easier for the GCC escape analysis; all this in support of better tail call optimization --- include/types.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'include') diff --git a/include/types.h b/include/types.h index d36f0f6b..28658862 100644 --- a/include/types.h +++ b/include/types.h @@ -18,10 +18,7 @@ typedef struct { char *data; } uw_Basis_blob; -struct __uws_0 { -}; - -typedef struct __uws_0 uw_unit; +typedef int uw_unit; typedef uw_unit uw_Basis_unit; typedef enum uw_Basis_bool { uw_Basis_False, uw_Basis_True } uw_Basis_bool; -- cgit v1.2.3