Title: [195640] trunk/Source/_javascript_Core
- Revision
- 195640
- Author
- o...@webkit.org
- Date
- 2016-01-26 17:10:58 -0800 (Tue, 26 Jan 2016)
Log Message
[B3] Fix control reaches end of non-void function GCC warning after r195139
https://bugs.webkit.org/show_bug.cgi?id=153426
Reviewed by Michael Catanzaro.
* b3/air/AirArg.h:
(JSC::B3::Air::Arg::cooled):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (195639 => 195640)
--- trunk/Source/_javascript_Core/ChangeLog 2016-01-27 00:57:06 UTC (rev 195639)
+++ trunk/Source/_javascript_Core/ChangeLog 2016-01-27 01:10:58 UTC (rev 195640)
@@ -1,3 +1,13 @@
+2016-01-26 Csaba Osztrogonác <o...@webkit.org>
+
+ [B3] Fix control reaches end of non-void function GCC warning after r195139
+ https://bugs.webkit.org/show_bug.cgi?id=153426
+
+ Reviewed by Michael Catanzaro.
+
+ * b3/air/AirArg.h:
+ (JSC::B3::Air::Arg::cooled):
+
2016-01-26 Saam barati <sbar...@apple.com>
testb3 and testAir should be compiled under -O0
Modified: trunk/Source/_javascript_Core/b3/air/AirArg.h (195639 => 195640)
--- trunk/Source/_javascript_Core/b3/air/AirArg.h 2016-01-27 00:57:06 UTC (rev 195639)
+++ trunk/Source/_javascript_Core/b3/air/AirArg.h 2016-01-27 01:10:58 UTC (rev 195640)
@@ -258,6 +258,7 @@
case LateUse:
return LateColdUse;
}
+ ASSERT_NOT_REACHED();
}
// Returns true if the Role implies that the Inst will Use the Arg before doing anything else.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes