Title: [171228] trunk
- Revision
- 171228
- Author
- [email protected]
- Date
- 2014-07-18 11:41:03 -0700 (Fri, 18 Jul 2014)
Log Message
Fix cloop build.
Source/_javascript_Core:
* jsc.cpp:
(jscmain):
Tools:
* Scripts/jsc-stress-test-helpers/js-exception-fuzz:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (171227 => 171228)
--- trunk/Source/_javascript_Core/ChangeLog 2014-07-18 18:20:54 UTC (rev 171227)
+++ trunk/Source/_javascript_Core/ChangeLog 2014-07-18 18:41:03 UTC (rev 171228)
@@ -1,3 +1,10 @@
+2014-07-18 Filip Pizlo <[email protected]>
+
+ Fix cloop build.
+
+ * jsc.cpp:
+ (jscmain):
+
2014-07-15 Filip Pizlo <[email protected]>
Need ability to fuzz exception throwing
Modified: trunk/Source/_javascript_Core/jsc.cpp (171227 => 171228)
--- trunk/Source/_javascript_Core/jsc.cpp 2014-07-18 18:20:54 UTC (rev 171227)
+++ trunk/Source/_javascript_Core/jsc.cpp 2014-07-18 18:41:03 UTC (rev 171228)
@@ -1274,8 +1274,10 @@
fprintf(stderr, "could not save profiler output.\n");
}
+#if ENABLE(JIT)
if (Options::enableExceptionFuzz())
printf("JSC EXCEPTION FUZZ: encountered %u checks.\n", numberOfExceptionFuzzChecks());
+#endif
}
return result;
Modified: trunk/Tools/ChangeLog (171227 => 171228)
--- trunk/Tools/ChangeLog 2014-07-18 18:20:54 UTC (rev 171227)
+++ trunk/Tools/ChangeLog 2014-07-18 18:41:03 UTC (rev 171228)
@@ -1,3 +1,9 @@
+2014-07-18 Filip Pizlo <[email protected]>
+
+ Fix cloop build.
+
+ * Scripts/jsc-stress-test-helpers/js-exception-fuzz:
+
2014-07-18 Renato Nagy <[email protected]>
Fix -v|--verbose option in sort-export-file script.
Modified: trunk/Tools/Scripts/jsc-stress-test-helpers/js-exception-fuzz (171227 => 171228)
--- trunk/Tools/Scripts/jsc-stress-test-helpers/js-exception-fuzz 2014-07-18 18:20:54 UTC (rev 171227)
+++ trunk/Tools/Scripts/jsc-stress-test-helpers/js-exception-fuzz 2014-07-18 18:41:03 UTC (rev 171228)
@@ -88,6 +88,11 @@
print "Seed: $seed\n";
}
+if (!$checkCount) {
+ print "Exception fuzz testing not supported by jsc binary.\n";
+ exit 0;
+}
+
srand($seed);
for (my $iteration = 0; $iteration < $repeat; ++$iteration) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes