Changeset 99333 in webkit for trunk/Source/JavaScriptCore
- Timestamp:
- Nov 4, 2011, 4:51:23 PM (14 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r99312 r99333 1 2011-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 1 10 2011-11-04 Mark Hahnenberg <[email protected]> 2 11 -
trunk/Source/JavaScriptCore/assembler/MacroAssemblerARMv7.h
r97331 r99333 659 659 } 660 660 661 void sqrtDouble(FPRegisterID, FPRegisterID) 661 void sqrtDouble(FPRegisterID, FPRegisterID) NO_RETURN_DUE_TO_ASSERT 662 662 { 663 663 ASSERT_NOT_REACHED(); 664 664 } 665 665 666 void andnotDouble(FPRegisterID, FPRegisterID) 666 void andnotDouble(FPRegisterID, FPRegisterID) NO_RETURN_DUE_TO_ASSERT 667 667 { 668 668 ASSERT_NOT_REACHED();
Note:
See TracChangeset
for help on using the changeset viewer.