Ignore:
Timestamp:
Nov 4, 2011, 4:51:23 PM (14 years ago)
Author:
[email protected]
Message:

sqrtDouble and andnotDouble should be declared noreturn
https://bugs.webkit.org/show_bug.cgi?id=71592

Reviewed by Sam Weinig.

  • assembler/MacroAssemblerARMv7.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/assembler/MacroAssemblerARMv7.h

    r97331 r99333  
    659659    }
    660660
    661     void sqrtDouble(FPRegisterID, FPRegisterID)
     661    void sqrtDouble(FPRegisterID, FPRegisterID) NO_RETURN_DUE_TO_ASSERT
    662662    {
    663663        ASSERT_NOT_REACHED();
    664664    }
    665665   
    666     void andnotDouble(FPRegisterID, FPRegisterID)
     666    void andnotDouble(FPRegisterID, FPRegisterID) NO_RETURN_DUE_TO_ASSERT
    667667    {
    668668        ASSERT_NOT_REACHED();
Note: See TracChangeset for help on using the changeset viewer.