Changeset 43439 in webkit for trunk/JavaScriptCore
- Timestamp:
- May 9, 2009, 8:44:28 AM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r43437 r43439 1 2009-05-09 Gustavo Noronha Silva <[email protected]> 2 3 Suggested by Geoffrey Garen. 4 5 Assume SSE2 is present on X86-64 and on MAC X86-32. This fixes a 6 build breakage on non-Mac X86-64 when JIT is enabled. 7 8 * jit/JITArithmetic.cpp: 9 1 10 2009-05-09 Gustavo Noronha Silva <[email protected]> 2 11 -
trunk/JavaScriptCore/jit/JITArithmetic.cpp
r43431 r43439 45 45 using namespace std; 46 46 47 #if PLATFORM(MAC) 47 // All X86 Macs are guaranteed to support at least SSE2 48 #if PLATFORM(X86_64) || (PLATFORM(X86) && PLATFORM(MAC)) 48 49 49 50 static inline bool isSSE2Present() 50 51 { 51 return true; // All X86 Macs are guaranteed to support at least SSE252 return true; 52 53 } 53 54
Note:
See TracChangeset
for help on using the changeset viewer.