forked from pool/MozillaFirefox
30 lines
885 B
Diff
30 lines
885 B
Diff
|
# HG changeset patch
|
||
|
# User Mike Hommey <mh+mozilla@glandium.org>
|
||
|
# Date 1321613368 -3600
|
||
|
# Node ID 15cf58eb7923d34de7e61df80fa5f8a18a995abf
|
||
|
# Parent aeb035da53283c56370992f254e4f79d7dd180f8
|
||
|
Bug 703534 - Fix build failure on platforms without YARR JIT. r=luke
|
||
|
target: M11
|
||
|
|
||
|
diff --git a/js/src/jscompartment.cpp b/js/src/jscompartment.cpp
|
||
|
--- a/js/src/jscompartment.cpp
|
||
|
+++ b/js/src/jscompartment.cpp
|
||
|
@@ -45,17 +45,16 @@
|
||
|
#include "jsiter.h"
|
||
|
#include "jsmath.h"
|
||
|
#include "jsproxy.h"
|
||
|
#include "jsscope.h"
|
||
|
#include "jstracer.h"
|
||
|
#include "jswatchpoint.h"
|
||
|
#include "jswrapper.h"
|
||
|
#include "assembler/wtf/Platform.h"
|
||
|
-#include "assembler/jit/ExecutableAllocator.h"
|
||
|
#include "yarr/BumpPointerAllocator.h"
|
||
|
#include "methodjit/MethodJIT.h"
|
||
|
#include "methodjit/PolyIC.h"
|
||
|
#include "methodjit/MonoIC.h"
|
||
|
#include "vm/Debugger.h"
|
||
|
|
||
|
#include "jsgcinlines.h"
|
||
|
#include "jsscopeinlines.h"
|