Changeset 48389 in webkit for trunk/JavaScriptCore/assembler/MacroAssemblerARM.h
- Timestamp:
- Sep 15, 2009, 4:29:33 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/assembler/MacroAssemblerARM.h
r47530 r48389 31 31 #include <wtf/Platform.h> 32 32 33 #if ENABLE(ASSEMBLER) && PLATFORM(ARM) 33 #if ENABLE(ASSEMBLER) && PLATFORM(ARM) && !PLATFORM_ARM_ARCH(7) 34 34 35 35 #include "ARMAssembler.h" … … 638 638 bool supportsFloatingPoint() const 639 639 { 640 // FIXME: should be a dynamic test: VFP, FPA, or nothing 641 return false; 640 return s_isVFPPresent; 642 641 } 643 642 … … 794 793 } 795 794 795 static const bool s_isVFPPresent; 796 796 }; 797 797 798 798 } 799 799 800 #endif 800 #endif // ENABLE(ASSEMBLER) && PLATFORM(ARM) && !PLATFORM_ARM_ARCH(7) 801 801 802 802 #endif // MacroAssemblerARM_h
Note:
See TracChangeset
for help on using the changeset viewer.