Changeset 194024 in webkit


Ignore:
Timestamp:
Dec 13, 2015 8:30:37 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

[JSC] Remove FTL::Output's doubleEqualOrUnordered()
https://bugs.webkit.org/show_bug.cgi?id=152234

Patch by Benjamin Poulain <bpoulain@apple.com> on 2015-12-13
Reviewed by Sam Weinig.

It is unused, one less thing to worry about.

  • ftl/FTLB3Output.h:

(JSC::FTL::Output::doubleEqualOrUnordered): Deleted.

  • ftl/FTLOutput.h:

(JSC::FTL::Output::doubleEqualOrUnordered): Deleted.

Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r194021 r194024  
     12015-12-13  Benjamin Poulain  <bpoulain@apple.com>
     2
     3        [JSC] Remove FTL::Output's doubleEqualOrUnordered()
     4        https://bugs.webkit.org/show_bug.cgi?id=152234
     5
     6        Reviewed by Sam Weinig.
     7
     8        It is unused, one less thing to worry about.
     9
     10        * ftl/FTLB3Output.h:
     11        (JSC::FTL::Output::doubleEqualOrUnordered): Deleted.
     12        * ftl/FTLOutput.h:
     13        (JSC::FTL::Output::doubleEqualOrUnordered): Deleted.
     14
    1152015-12-13  Yusuke Suzuki  <utatane.tea@gmail.com>
    216
  • trunk/Source/JavaScriptCore/ftl/FTLB3Output.h

    r194003 r194024  
    337337    LValue doubleGreaterThan(LValue left, LValue right) { return m_block->appendNew<B3::Value>(m_proc, B3::GreaterThan, origin(), left, right); }
    338338    LValue doubleGreaterThanOrEqual(LValue left, LValue right) { return m_block->appendNew<B3::Value>(m_proc, B3::GreaterEqual, origin(), left, right); }
    339     LValue doubleEqualOrUnordered(LValue left, LValue right) { CRASH(); }
    340339    LValue doubleNotEqual(LValue left, LValue right) { CRASH(); }
    341340    LValue doubleLessThanOrUnordered(LValue left, LValue right)
  • trunk/Source/JavaScriptCore/ftl/FTLOutput.h

    r193955 r194024  
    377377    LValue doubleGreaterThan(LValue left, LValue right) { return fcmp(LLVMRealOGT, left, right); }
    378378    LValue doubleGreaterThanOrEqual(LValue left, LValue right) { return fcmp(LLVMRealOGE, left, right); }
    379     LValue doubleEqualOrUnordered(LValue left, LValue right) { return fcmp(LLVMRealUEQ, left, right); }
    380379    LValue doubleNotEqual(LValue left, LValue right) { return fcmp(LLVMRealONE, left, right); }
    381380    LValue doubleLessThanOrUnordered(LValue left, LValue right) { return fcmp(LLVMRealULT, left, right); }
Note: See TracChangeset for help on using the changeset viewer.