Title: [211546] trunk/Source/_javascript_Core
Revision
211546
Author
keith_mil...@apple.com
Date
2017-02-01 17:49:20 -0800 (Wed, 01 Feb 2017)

Log Message

Unreviewed, fix unintended change.

* runtime/SamplingProfiler.cpp:
(JSC::SamplingProfiler::StackFrame::displayName):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (211545 => 211546)


--- trunk/Source/_javascript_Core/ChangeLog	2017-02-02 01:48:29 UTC (rev 211545)
+++ trunk/Source/_javascript_Core/ChangeLog	2017-02-02 01:49:20 UTC (rev 211546)
@@ -1,5 +1,12 @@
 2017-02-01  Keith Miller  <keith_mil...@apple.com>
 
+        Unreviewed, fix unintended change.
+
+        * runtime/SamplingProfiler.cpp:
+        (JSC::SamplingProfiler::StackFrame::displayName):
+
+2017-02-01  Keith Miller  <keith_mil...@apple.com>
+
         The sampling profile should have an option to sample from C frames.
         https://bugs.webkit.org/show_bug.cgi?id=167614
 

Modified: trunk/Source/_javascript_Core/runtime/SamplingProfiler.cpp (211545 => 211546)


--- trunk/Source/_javascript_Core/runtime/SamplingProfiler.cpp	2017-02-02 01:48:29 UTC (rev 211545)
+++ trunk/Source/_javascript_Core/runtime/SamplingProfiler.cpp	2017-02-02 01:49:20 UTC (rev 211546)
@@ -760,7 +760,7 @@
             WTF::dataLog("couldn't get a name");
         }
 #endif
-        return ASCIILiteral("(unknown12)");
+        return ASCIILiteral("(unknown)");
     }
     if (frameType == FrameType::Host)
         return ASCIILiteral("(host)");
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to