Ignore:
Timestamp:
Feb 16, 2009, 7:38:42 PM (16 years ago)
Author:
[email protected]
Message:

Roll out r41022 as it breaks qt and gtk builds

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/jit/JITArithmetic.cpp

    r41022 r41036  
    622622                mov flags, edx;
    623623            }
    624 #elif COMPILER(GCC)
    625             asm (
    626                 "movl $0x1, %%eax;"
    627                 "cpuid;"
    628                 "movl %%edx, %0;"
    629                 : "=g" (flags)
    630                 :
    631                 : "%eax", "%ebx", "%ecx", "%edx"
    632             );
    633624#else
    634625            flags = 0;
     626            // FIXME: Add GCC code to do above asm
    635627#endif
    636628            present = (flags & SSE2FeatureBit) != 0;
Note: See TracChangeset for help on using the changeset viewer.