Title: [176837] trunk/Source/_javascript_Core
Revision
176837
Author
[email protected]
Date
2014-12-04 22:58:04 -0800 (Thu, 04 Dec 2014)

Log Message

Build fix after r176836.

Reviewed by Mark Lam.

* runtime/VM.h:
(JSC::VM::controlFlowProfiler): Don't try to export an inline function.
Doing so results in a weak external symbol being generated.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (176836 => 176837)


--- trunk/Source/_javascript_Core/ChangeLog	2014-12-05 05:58:07 UTC (rev 176836)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-12-05 06:58:04 UTC (rev 176837)
@@ -1,3 +1,13 @@
+2014-12-04  Mark Rowe  <[email protected]>
+
+        Build fix after r176836.
+
+        Reviewed by Mark Lam.
+
+        * runtime/VM.h:
+        (JSC::VM::controlFlowProfiler): Don't try to export an inline function.
+        Doing so results in a weak external symbol being generated.
+
 2014-12-04  Saam Barati  <[email protected]>
 
         _javascript_ Control Flow Profiler

Modified: trunk/Source/_javascript_Core/runtime/VM.h (176836 => 176837)


--- trunk/Source/_javascript_Core/runtime/VM.h	2014-12-05 05:58:07 UTC (rev 176836)
+++ trunk/Source/_javascript_Core/runtime/VM.h	2014-12-05 06:58:04 UTC (rev 176837)
@@ -521,7 +521,7 @@
 
     FunctionHasExecutedCache* functionHasExecutedCache() { return &m_functionHasExecutedCache; }
 
-    JS_EXPORT_PRIVATE ControlFlowProfiler* controlFlowProfiler() { return m_controlFlowProfiler.get(); }
+    ControlFlowProfiler* controlFlowProfiler() { return m_controlFlowProfiler.get(); }
     bool enableControlFlowProfiler();
     bool disableControlFlowProfiler();
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to