Changeset 99333 in webkit for trunk/Source/JavaScriptCore


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:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r99312 r99333  
     12011-11-04  Pratik Solanki  <[email protected]>
     2
     3        sqrtDouble and andnotDouble should be declared noreturn
     4        https://bugs.webkit.org/show_bug.cgi?id=71592
     5
     6        Reviewed by Sam Weinig.
     7
     8        * assembler/MacroAssemblerARMv7.h:
     9
    1102011-11-04  Mark Hahnenberg  <[email protected]>
    211
  • 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.