From 0aa32fa0cbe8d9fea52e0311d09225b37697e085 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 15 May 2014 17:41:27 -0300 Subject: small changes in field order in some structs to reduce padding --- lstate.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index a876f35f..fd21fb9f 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 2.101 2014/02/18 13:39:37 roberto Exp roberto $ +** $Id: lstate.h,v 2.102 2014/02/18 13:46:26 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -69,9 +69,9 @@ typedef struct CallInfo { const Instruction *savedpc; } l; struct { /* only for C functions */ - int ctx; /* context info. in case of yields */ lua_CFunction k; /* continuation in case of yields */ ptrdiff_t old_errfunc; + int ctx; /* context info. in case of yields */ lu_byte old_allowhook; lu_byte status; } c; -- cgit v1.2.3-55-g6feb