Changeset 251667 in webkit


Ignore:
Timestamp:
Oct 28, 2019 1:21:47 PM (4 years ago)
Author:
commit-queue@webkit.org
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.webkit@apple.com> on 2019-10-28
Reviewed by Antti Koivisto.

  • bytecode/SpeculatedType.cpp:

(JSC::dumpSpeculation):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r251652 r251667  
     12019-10-28  Tuomas Karkkainen  <tuomas.webkit@apple.com>
     2
     3        dumpSpeculation in SpeculatedType.cpp prints to the wrong stream and has wrong capitalization for NaN
     4        https://bugs.webkit.org/show_bug.cgi?id=203486
     5
     6        Reviewed by Antti Koivisto.
     7
     8        * bytecode/SpeculatedType.cpp:
     9        (JSC::dumpSpeculation):
     10
    1112019-10-28  Fujii Hironori  <Hironori.Fujii@sony.com>
    212
  • trunk/Source/JavaScriptCore/bytecode/SpeculatedType.cpp

    r250536 r251667  
    269269       
    270270        if (value & SpecDoublePureNaN)
    271             strOut.print("DoublePureNan");
     271            strOut.print("DoublePureNaN");
    272272        else
    273273            isTop = false;
     
    275275   
    276276    if (value & SpecDoubleImpureNaN)
    277         out.print("DoubleImpureNan");
     277        strOut.print("DoubleImpureNaN");
    278278   
    279279    if (value & SpecBoolean)
Note: See TracChangeset for help on using the changeset viewer.