[JAEGER] Make x64 tinderboxes happy.

This commit is contained in:
David Anderson 2010-06-28 15:53:07 -07:00
parent 5b04a102b2
commit 7c08affa73
2 changed files with 4 additions and 2 deletions

View File

@ -2592,7 +2592,6 @@ x86_64*-*)
ENABLE_TRACEJIT=1
NANOJIT_ARCH=X64
AC_DEFINE(JS_CPU_X64)
AC_DEFINE(JS_64BIT)
;;
arm*-*)
ENABLE_TRACEJIT=1

View File

@ -79,7 +79,10 @@ static const jsbytecode emptyScriptCode[] = {JSOP_STOP, SRC_NULL};
const_cast<jsbytecode*>(emptyScriptCode),
1, JSVERSION_DEFAULT, 0, 0, 0, 0, 0, 0, 0, true, false, false, false, false,
false, const_cast<jsbytecode*>(emptyScriptCode),
{0, NULL}, NULL, 0, 0, 0, NULL, {NULL}, reinterpret_cast<JSThread*>(1)
{0, NULL}, NULL, 0, 0, 0, NULL, {NULL},
#ifdef CHECK_SCRIPT_OWNER
reinterpret_cast<JSThread*>(1)
#endif
};
#if JS_HAS_XDR