Ignore:
Timestamp:
Aug 29, 2019, 5:39:31 PM (6 years ago)
Author:
Keith Rollin
Message:

Remove 32-bit macOS support
https://bugs.webkit.org/show_bug.cgi?id=201282
<rdar://problem/54821667>

Reviewed by Anders Carlsson.

WebKit doesn’t support 32-bit Mac any more, so remove checks and code
for that platform.

Source/JavaScriptCore:

  • API/JSBase.h:
  • runtime/VM.h:

Source/WTF:

  • wtf/Platform.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/API/JSBase.h

    r230813 r249304  
    146146/* Enable the Objective-C API for platforms with a modern runtime. NOTE: This is duplicated in VM.h. */
    147147#if !defined(JSC_OBJC_API_ENABLED)
    148 #if (defined(__clang__) && defined(__APPLE__) && ((defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && !defined(__i386__)) || (defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE)))
     148#if (defined(__clang__) && defined(__APPLE__) && (defined(__MAC_OS_X_VERSION_MIN_REQUIRED) || (defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE)))
    149149#define JSC_OBJC_API_ENABLED 1
    150150#else
Note: See TracChangeset for help on using the changeset viewer.