⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 194071 in webkit


Ignore:
Timestamp:
Dec 14, 2015, 4:11:45 PM (11 years ago)
Author:
benjamin@webkit.org
Message:

Fix bad copy-paste in r194062

Patch by Benjamin Poulain <bpoulain@apple.com> on 2015-12-14

  • ftl/FTLB3Output.h:

(JSC::FTL::Output::ceil64):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r194068 r194071  
     12015-12-14  Benjamin Poulain  <bpoulain@apple.com>
     2
     3        Fix bad copy-paste in r194062
     4
     5        * ftl/FTLB3Output.h:
     6        (JSC::FTL::Output::ceil64):
     7
    182015-12-14  Filip Pizlo  <fpizlo@apple.com>
    29
  • trunk/Source/JavaScriptCore/ftl/FTLB3Output.h

    r194062 r194071  
    155155    LValue bitNot(LValue);
    156156
    157     LValue ceil64(LValue operand) { return m_block->appendNew<B3::Value>(m_proc, B3::Ceil, origin(), value); }
     157    LValue ceil64(LValue operand) { return m_block->appendNew<B3::Value>(m_proc, B3::Ceil, origin(), operand); }
    158158    LValue ctlz32(LValue operand) { return m_block->appendNew<B3::Value>(m_proc, B3::Clz, origin(), operand); }
    159159    LValue addWithOverflow32(LValue left, LValue right) { CRASH(); }
Note: See TracChangeset for help on using the changeset viewer.