From 77e7ebca0ab70a7ff00179099a0383314420b2af Mon Sep 17 00:00:00 2001
From: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Wed, 7 May 2014 08:12:51 -0300
Subject: better alignments (for 64-bit arquitectures) for structures 'Table'
 and 'TString'

---
 lobject.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

(limited to 'lobject.h')

diff --git a/lobject.h b/lobject.h
index e239f8c6..53febca7 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
 /*
-** $Id: lobject.h,v 2.88 2014/04/30 16:48:44 roberto Exp roberto $
+** $Id: lobject.h,v 2.89 2014/05/01 18:18:06 roberto Exp roberto $
 ** Type definitions for Lua objects
 ** See Copyright Notice in lua.h
 */
@@ -310,9 +310,9 @@ typedef union TString {
   struct {
     CommonHeader;
     lu_byte extra;  /* reserved words for short strings; "has hash" for longs */
+    unsigned int hash;
     size_t len;  /* number of characters in string */
     union TString *hnext;  /* linked list for hash table */
-    unsigned int hash;
   } tsv;
 } TString;
 
@@ -462,12 +462,12 @@ typedef struct Table {
   CommonHeader;
   lu_byte flags;  /* 1<<p means tagmethod(p) is not present */
   lu_byte lsizenode;  /* log2 of size of `node' array */
-  struct Table *metatable;
+  int sizearray;  /* size of `array' array */
   TValue *array;  /* array part */
   Node *node;
   Node *lastfree;  /* any free position is before this position */
+  struct Table *metatable;
   GCObject *gclist;
-  int sizearray;  /* size of `array' array */
 } Table;
 
 
-- 
cgit v1.2.3-55-g6feb