From d8e4dc912005663a39eff58d5d4acebfc9e82dc0 Mon Sep 17 00:00:00 2001 From: Andreas Gal Date: Fri, 22 Oct 2010 17:21:18 -0700 Subject: [PATCH] Remove bogus assert, follow-up for bug 604523. a=blocking beta 7 --HG-- extra : rebase_source : 66290385e5f6af23c970c33897c4755952b4bcce --- js/src/jstracer.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/js/src/jstracer.cpp b/js/src/jstracer.cpp index d08ba4f9698..9e0a2cd7d75 100644 --- a/js/src/jstracer.cpp +++ b/js/src/jstracer.cpp @@ -10210,11 +10210,6 @@ TraceRecorder::getThis(LIns*& this_ins) RETURN_ERROR("computeThis failed"); /* thisv is a reference, so it'll see the newly computed |this|. */ -#ifdef DEBUG - JS_ASSERT(thisv.isObject()); - JSObject *thisObj = &thisv.toObject(); - JS_ASSERT(thisObj->getClass()->ext.innerObject); -#endif this_ins = INS_CONSTOBJ(globalObj); set(&thisv, this_ins); return RECORD_CONTINUE;