Changeset 193687 in webkit


Ignore:
Timestamp:
Dec 7, 2015 8:05:24 PM (8 years ago)
Author:
fpizlo@apple.com
Message:

Small style fixes in B3MoveConstants.cpp
https://bugs.webkit.org/show_bug.cgi?id=151980

Reviewed by Benjamin Poulain.

  • b3/B3MoveConstants.cpp:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r193686 r193687  
     12015-12-07  Filip Pizlo  <fpizlo@apple.com>
     2
     3        Small style fixes in B3MoveConstants.cpp
     4        https://bugs.webkit.org/show_bug.cgi?id=151980
     5
     6        Reviewed by Benjamin Poulain.
     7
     8        * b3/B3MoveConstants.cpp:
     9
    1102015-12-07  Benjamin Poulain  <bpoulain@apple.com>
    211
  • trunk/Source/JavaScriptCore/b3/B3MoveConstants.cpp

    r193683 r193687  
    248248            result = m_insertionSet.insert<MemoryValue>(
    249249                valueIndex, Load, key.type(), origin, tableBase,
    250                 sizeof(intptr_t) * m_constTable.get(key));
     250                sizeof(int64_t) * m_constTable.get(key));
    251251        } else
    252252            result = m_insertionSet.insertValue(valueIndex, key.materialize(m_proc, origin));
     
    258258    {
    259259        return (key.opcode() == ConstDouble && key != doubleZero())
    260         || (key.opcode() == ConstFloat && key != floatZero());
     260            || (key.opcode() == ConstFloat && key != floatZero());
    261261    }
    262262
Note: See TracChangeset for help on using the changeset viewer.