From 787c4a5065383e17a461122d2732acfb63356aab Mon Sep 17 00:00:00 2001 From: "brendan%mozilla.org" Date: Sun, 6 May 2007 09:29:21 +0000 Subject: [PATCH] Unhide a crucial pop from the decompiler (379860, r=igor). --- js/src/jsemit.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/js/src/jsemit.c b/js/src/jsemit.c index 13df1568a99..9c1b643756f 100644 --- a/js/src/jsemit.c +++ b/js/src/jsemit.c @@ -5129,10 +5129,8 @@ js_EmitTree(JSContext *cx, JSCodeGenerator *cg, JSParseNode *pn) GUARDJUMP(*stmt) = guardJump; /* Pop duplicated exception object as we no longer need it. */ - if (js_NewSrcNote(cx, cg, SRC_HIDDEN) < 0 || - js_Emit1(cx, cg, JSOP_POP) < 0) { + if (js_Emit1(cx, cg, JSOP_POP) < 0) return JS_FALSE; - } } /* Emit the catch body. */