Title: [251667] trunk/Source/_javascript_Core
Revision
251667
Author
commit-qu...@webkit.org
Date
2019-10-28 13:21:47 -0700 (Mon, 28 Oct 2019)

Log Message

dumpSpeculation in SpeculatedType.cpp prints to the wrong stream and has wrong capitalization for NaN
https://bugs.webkit.org/show_bug.cgi?id=203486

Patch by Tuomas Karkkainen <tuomas.web...@apple.com> on 2019-10-28
Reviewed by Antti Koivisto.

* bytecode/SpeculatedType.cpp:
(JSC::dumpSpeculation):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (251666 => 251667)


--- trunk/Source/_javascript_Core/ChangeLog	2019-10-28 20:09:27 UTC (rev 251666)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-10-28 20:21:47 UTC (rev 251667)
@@ -1,3 +1,13 @@
+2019-10-28  Tuomas Karkkainen  <tuomas.web...@apple.com>
+
+        dumpSpeculation in SpeculatedType.cpp prints to the wrong stream and has wrong capitalization for NaN
+        https://bugs.webkit.org/show_bug.cgi?id=203486
+
+        Reviewed by Antti Koivisto.
+
+        * bytecode/SpeculatedType.cpp:
+        (JSC::dumpSpeculation):
+
 2019-10-28  Fujii Hironori  <hironori.fu...@sony.com>
 
         [Windows][Clang] error LNK2001: unresolved external symbol "void * __cdecl JSC::allocateCell<class JSC::JSGenericTypedArrayView<struct JSC::Float32Adaptor> >(class JSC::Heap &,unsigned __int64)"

Modified: trunk/Source/_javascript_Core/bytecode/SpeculatedType.cpp (251666 => 251667)


--- trunk/Source/_javascript_Core/bytecode/SpeculatedType.cpp	2019-10-28 20:09:27 UTC (rev 251666)
+++ trunk/Source/_javascript_Core/bytecode/SpeculatedType.cpp	2019-10-28 20:21:47 UTC (rev 251667)
@@ -268,13 +268,13 @@
             isTop = false;
         
         if (value & SpecDoublePureNaN)
-            strOut.print("DoublePureNan");
+            strOut.print("DoublePureNaN");
         else
             isTop = false;
     }
     
     if (value & SpecDoubleImpureNaN)
-        out.print("DoubleImpureNan");
+        strOut.print("DoubleImpureNaN");
     
     if (value & SpecBoolean)
         strOut.print("Bool");
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to