Modified: trunk/Source/_javascript_Core/ChangeLog (237174 => 237175)
--- trunk/Source/_javascript_Core/ChangeLog 2018-10-16 07:39:06 UTC (rev 237174)
+++ trunk/Source/_javascript_Core/ChangeLog 2018-10-16 07:52:11 UTC (rev 237175)
@@ -1,3 +1,9 @@
+2018-10-16 Keith Miller <[email protected]>
+
+ Unreviewed, add missing include.
+
+ * runtime/BasicBlockLocation.h:
+
2018-10-15 Keith Miller <[email protected]>
Support arm64 CPUs with a 32-bit address space
Modified: trunk/Source/_javascript_Core/runtime/BasicBlockLocation.h (237174 => 237175)
--- trunk/Source/_javascript_Core/runtime/BasicBlockLocation.h 2018-10-16 07:39:06 UTC (rev 237174)
+++ trunk/Source/_javascript_Core/runtime/BasicBlockLocation.h 2018-10-16 07:52:11 UTC (rev 237175)
@@ -26,6 +26,7 @@
#pragma once
+#include "CPU.h"
#include "MacroAssembler.h"
#include <wtf/Vector.h>
Modified: trunk/Source/_javascript_Core/runtime/Options.h (237174 => 237175)
--- trunk/Source/_javascript_Core/runtime/Options.h 2018-10-16 07:39:06 UTC (rev 237174)
+++ trunk/Source/_javascript_Core/runtime/Options.h 2018-10-16 07:52:11 UTC (rev 237175)
@@ -130,8 +130,8 @@
v(optionString, configFile, nullptr, Normal, "file to configure JSC options and logging location") \
\
v(bool, useLLInt, true, Normal, "allows the LLINT to be used if true") \
- v(bool, useJIT, jitEnabledByDefault(), Normal, "allows the executable pages to be allocated for JIT and thunks if true") \
- v(bool, useBaselineJIT, true, Normal, "allows the baseline JIT to be used if true") \
+ v(bool, useJIT, true, Normal, "allows the executable pages to be allocated for JIT and thunks if true") \
+ v(bool, useBaselineJIT, jitEnabledByDefault(), Normal, "allows the baseline JIT to be used if true") \
v(bool, useDFGJIT, true, Normal, "allows the DFG JIT to be used if true") \
v(bool, useRegExpJIT, true, Normal, "allows the RegExp JIT to be used if true") \
v(bool, useDOMJIT, is64Bit(), Normal, "allows the DOMJIT to be used if true") \