Title: [173371] trunk/Source/_javascript_Core
- Revision
- 173371
- Author
- m...@apple.com
- Date
- 2014-09-07 19:39:36 -0700 (Sun, 07 Sep 2014)
Log Message
Fix typos in last patch to fix build.
Unreviewed build fix.
* dfg/DFGSpeculativeJIT.cpp:
(JSC::DFG::SpeculativeJIT::silentSavePlanForGPR):
(JSC::DFG::SpeculativeJIT::jumpSlowForUnwantedArrayMode):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (173370 => 173371)
--- trunk/Source/_javascript_Core/ChangeLog 2014-09-08 02:16:47 UTC (rev 173370)
+++ trunk/Source/_javascript_Core/ChangeLog 2014-09-08 02:39:36 UTC (rev 173371)
@@ -1,5 +1,15 @@
2014-09-07 Maciej Stachowiak <m...@apple.com>
+ Fix typos in last patch to fix build.
+
+ Unreviewed build fix.
+
+ * dfg/DFGSpeculativeJIT.cpp:
+ (JSC::DFG::SpeculativeJIT::silentSavePlanForGPR):
+ (JSC::DFG::SpeculativeJIT::jumpSlowForUnwantedArrayMode):
+
+2014-09-07 Maciej Stachowiak <m...@apple.com>
+
Introduce COMPILER_QUIRK(CONSIDERS_UNREACHABLE_CODE) and use it
https://bugs.webkit.org/show_bug.cgi?id=136616
Modified: trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.cpp (173370 => 173371)
--- trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.cpp 2014-09-08 02:16:47 UTC (rev 173370)
+++ trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.cpp 2014-09-08 02:39:36 UTC (rev 173371)
@@ -384,7 +384,7 @@
fillAction = Load64;
else {
RELEASE_ASSERT_NOT_REACHED();
-#if COMPILER_QURIK(CONSIDERS_UNREACHABLE_CODE)
+#if COMPILER_QUIRK(CONSIDERS_UNREACHABLE_CODE)
fillAction = Load64; // Make GCC happy.
#endif
}
@@ -602,7 +602,7 @@
switch (arrayMode.arrayClass()) {
case Array::OriginalArray: {
CRASH();
-#if COMPILER_QURIK(CONSIDERS_UNREACHABLE_CODE)
+#if COMPILER_QUIRK(CONSIDERS_UNREACHABLE_CODE)
JITCompiler::Jump result; // I already know that VC++ takes unkindly to the _expression_ "return Jump()", so I'm doing it this way in anticipation of someone eventually using VC++ to compile the DFG.
return result;
#endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes