Bug 1121434 - Followup: fix js bustage on a CLOSED TREE. (r=me)

This commit is contained in:
Shu-yu Guo 2015-01-15 21:01:23 -08:00
parent b46cbfd26f
commit 3e0e1fac0c
2 changed files with 2 additions and 2 deletions

View File

@ -206,7 +206,7 @@ class CompileInfo
nslots_ = nimplicit_ + nargs_ + nlocals_ + nstack_;
}
CompileInfo(unsigned nlocals)
explicit CompileInfo(unsigned nlocals)
: script_(nullptr), fun_(nullptr), osrPc_(nullptr), osrStaticScope_(nullptr),
constructing_(false), analysisMode_(Analysis_None), scriptNeedsArgsObj_(false),
inlineScriptTree_(nullptr)

View File

@ -22,6 +22,7 @@
#include "gc/Marking.h"
#include "jit/BaselineJIT.h"
#include "jit/CompileInfo.h"
#include "jit/Ion.h"
#include "jit/IonAnalysis.h"
#include "jit/JitCompartment.h"
@ -35,7 +36,6 @@
#include "jsobjinlines.h"
#include "jsscriptinlines.h"
#include "jit/CompileInfo.h"
#include "vm/NativeObject-inl.h"
using namespace js;