Changeset 47197 in webkit for trunk/JavaScriptCore/wtf/Platform.h


Ignore:
Timestamp:
Aug 13, 2009, 7:54:21 AM (16 years ago)
Author:
Simon Hausmann
Message:

Remove the special-case for Qt wrt JSVALUE_32 introduced in
r46709. It must've been a dependency issue on the bot, as
after a manual build all the tests pass on amd64 and ia32.

Patch by Simon Hausmann <[email protected]> on 2009-08-13
Reviewed by Ariya Hidayat.

  • wtf/Platform.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/Platform.h

    r47184 r47197  
    584584
    585585#if !defined(WTF_USE_JSVALUE64) && !defined(WTF_USE_JSVALUE32) && !defined(WTF_USE_JSVALUE32_64)
    586 #if PLATFORM(X86_64) && (PLATFORM(MAC) || (PLATFORM(LINUX) && !PLATFORM(QT)))
     586#if PLATFORM(X86_64) && (PLATFORM(MAC) || PLATFORM(LINUX))
    587587#define WTF_USE_JSVALUE64 1
    588 #elif PLATFORM(IPHONE) || PLATFORM(PPC64) || PLATFORM(QT) /* All Qt layout tests crash in JSVALUE32_64 mode. */
     588#elif PLATFORM(IPHONE) || PLATFORM(PPC64)
    589589#define WTF_USE_JSVALUE32 1
    590590#else
Note: See TracChangeset for help on using the changeset viewer.