Title: [153310] trunk/Source/_javascript_Core
- Revision
- 153310
- Author
- [email protected]
- Date
- 2013-07-25 03:51:41 -0700 (Thu, 25 Jul 2013)
Log Message
Buildfix after this error:
error: 'pathName' may be used uninitialized in this function [-Werror=uninitialized]
* dfg/DFGPlan.cpp:
(JSC::DFG::Plan::compileInThread):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (153309 => 153310)
--- trunk/Source/_javascript_Core/ChangeLog 2013-07-25 10:46:43 UTC (rev 153309)
+++ trunk/Source/_javascript_Core/ChangeLog 2013-07-25 10:51:41 UTC (rev 153310)
@@ -1,5 +1,13 @@
2013-07-25 Csaba Osztrogonác <[email protected]>
+ Buildfix after this error:
+ error: 'pathName' may be used uninitialized in this function [-Werror=uninitialized]
+
+ * dfg/DFGPlan.cpp:
+ (JSC::DFG::Plan::compileInThread):
+
+2013-07-25 Csaba Osztrogonác <[email protected]>
+
One more buildfix after FTL upstream.
Return a dummy value after RELEASE_ASSERT_NOT_REACHED() to make GCC happy.
Modified: trunk/Source/_javascript_Core/dfg/DFGPlan.cpp (153309 => 153310)
--- trunk/Source/_javascript_Core/dfg/DFGPlan.cpp 2013-07-25 10:46:43 UTC (rev 153309)
+++ trunk/Source/_javascript_Core/dfg/DFGPlan.cpp 2013-07-25 10:51:41 UTC (rev 153310)
@@ -123,6 +123,10 @@
case FTLPath:
pathName = "FTL";
break;
+ default:
+ RELEASE_ASSERT_NOT_REACHED();
+ pathName = "";
+ break;
}
double now = currentTimeMS();
dataLog("Optimized ", *codeBlock->alternative(), " with ", pathName, " in ", now - before, " ms");
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes