From 071de96c1ebcd6144f78d338ffb0a1ec9c23e8b1 Mon Sep 17 00:00:00 2001 From: Nicholas Nethercote Date: Tue, 22 May 2012 18:37:09 -0700 Subject: [PATCH] Bug 754641 - Fix 32-bit --disable-methodjit builds after bug 739512. r=luke. --- js/src/jsscript.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/js/src/jsscript.h b/js/src/jsscript.h index 9379879e6d2..c69901e4c3d 100644 --- a/js/src/jsscript.h +++ b/js/src/jsscript.h @@ -440,6 +440,10 @@ struct JSScript : public js::gc::Cell * or has had backedges taken. Reset if the * script's JIT code is forcibly discarded. */ +#if !defined(JS_METHODJIT) && JS_BITS_PER_WORD == 32 + uint32_t pad32; +#endif + #ifdef DEBUG // Unique identifier within the compartment for this script, used for // printing analysis information.