Changeset 242663 in webkit


Ignore:
Timestamp:
Mar 8, 2019 4:17:37 PM (5 years ago)
Author:
rmorisset@apple.com
Message:

IntegerCheckCombiningPhase::Range can be shrunk by 8 bytes
https://bugs.webkit.org/show_bug.cgi?id=195487

Reviewed by Saam Barati.

  • dfg/DFGIntegerCheckCombiningPhase.cpp:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r242660 r242663  
     12019-03-08  Robin Morisset  <rmorisset@apple.com>
     2
     3        IntegerCheckCombiningPhase::Range can be shrunk by 8 bytes
     4        https://bugs.webkit.org/show_bug.cgi?id=195487
     5
     6        Reviewed by Saam Barati.
     7
     8        * dfg/DFGIntegerCheckCombiningPhase.cpp:
     9
    1102019-03-08  Robin Morisset  <rmorisset@apple.com>
    211
  • trunk/Source/JavaScriptCore/dfg/DFGIntegerCheckCombiningPhase.cpp

    r241228 r242663  
    146146       
    147147        int32_t m_minBound { 0 };
     148        int32_t m_maxBound { 0 };
    148149        CodeOrigin m_minOrigin;
    149         int32_t m_maxBound { 0 };
    150150        CodeOrigin m_maxOrigin;
    151151        unsigned m_count { 0 }; // If this is zero then the bounds won't necessarily make sense.
Note: See TracChangeset for help on using the changeset viewer.