Title: [199763] trunk/Source/_javascript_Core
Revision
199763
Author
[email protected]
Date
2016-04-19 22:49:31 -0700 (Tue, 19 Apr 2016)

Log Message

Unreviewed, fix cloop build after r199754.

* jsc.cpp:
(jscmain):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (199762 => 199763)


--- trunk/Source/_javascript_Core/ChangeLog	2016-04-20 05:13:28 UTC (rev 199762)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-04-20 05:49:31 UTC (rev 199763)
@@ -1,3 +1,10 @@
+2016-04-19  Saam barati  <[email protected]>
+
+        Unreviewed, fix cloop build after r199754.
+
+        * jsc.cpp:
+        (jscmain):
+
 2016-04-19  Michael Saboff  <[email protected]>
 
         iTunes crashing _javascript_Core.dll

Modified: trunk/Source/_javascript_Core/jsc.cpp (199762 => 199763)


--- trunk/Source/_javascript_Core/jsc.cpp	2016-04-20 05:13:28 UTC (rev 199762)
+++ trunk/Source/_javascript_Core/jsc.cpp	2016-04-20 05:49:31 UTC (rev 199763)
@@ -2274,8 +2274,12 @@
     }
 
     if (options.m_dumpSamplingProfilerData) {
+#if ENABLE(SAMPLING_PROFILER)
         vm->samplingProfiler()->reportTopFunctions();
         vm->samplingProfiler()->reportTopBytecodes();
+#else
+        dataLog("Sampling profiler is not enabled on this platform\n");
+#endif
     }
 
     printSuperSamplerState();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to