From 3b4b3b75a6befc521fbb4b9cb54e8131c1c35811 Mon Sep 17 00:00:00 2001 From: Joe Soroka Date: Fri, 4 Feb 2011 17:54:08 -0800 Subject: [PATCH] revert "update VT_STRUCT_SHIFT for new VT_VLA" --- tcc-doc.texi | 2 +- tcc.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tcc-doc.texi b/tcc-doc.texi index 14827aa1..8c91d0fb 100644 --- a/tcc-doc.texi +++ b/tcc-doc.texi @@ -931,7 +931,7 @@ be the best solution. #define VT_ARRAY 0x0020 /* array type (also has VT_PTR) */ #define VT_BITFIELD 0x0040 /* bitfield modifier */ -#define VT_STRUCT_SHIFT 18 /* structure/enum name shift (14 bits left) */ +#define VT_STRUCT_SHIFT 17 /* structure/enum name shift (14 bits left) */ @end example When a reference to another type is needed (for pointers, functions and diff --git a/tcc.h b/tcc.h index edefe92f..a3a9c78a 100644 --- a/tcc.h +++ b/tcc.h @@ -630,7 +630,7 @@ struct TCCState { #define VT_EXPORT 0x00008000 /* win32: data exported from dll */ #define VT_WEAK 0x00010000 /* win32: data exported from dll */ -#define VT_STRUCT_SHIFT 18 /* shift for bitfield shift values */ +#define VT_STRUCT_SHIFT 17 /* shift for bitfield shift values */ /* type mask (except storage) */ #define VT_STORAGE (VT_EXTERN | VT_STATIC | VT_TYPEDEF | VT_INLINE | VT_IMPORT | VT_EXPORT | VT_WEAK) -- 2.11.4.GIT