Changeset 215356 in webkit


Ignore:
Timestamp:
Apr 13, 2017 9:46:56 PM (7 years ago)
Author:
jfbastien@apple.com
Message:

WebAssembly: fix windows build
https://bugs.webkit.org/show_bug.cgi?id=170832

Reviewed by Mark Lam.

My previous patch re-declared isIOS which AssemblerCommon.h
already provided, and which was already included by Options.cpp.

  • runtime/Options.cpp:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r215353 r215356  
     12017-04-13  JF Bastien  <jfbastien@apple.com>
     2
     3        WebAssembly: fix windows build
     4        https://bugs.webkit.org/show_bug.cgi?id=170832
     5
     6        Reviewed by Mark Lam.
     7
     8        My previous patch re-declared isIOS which AssemblerCommon.h
     9        already provided, and which was already included by Options.cpp.
     10
     11        * runtime/Options.cpp:
     12
    1132017-04-13  Saam Barati  <sbarati@apple.com>
    214
  • trunk/Source/JavaScriptCore/runtime/Options.cpp

    r215340 r215356  
    2727#include "Options.h"
    2828
     29#include "AssemblerCommon.h"
    2930#include "LLIntCommon.h"
    3031#include "LLIntData.h"
     
    6061bool restrictedOptionsEnabled = true;
    6162#endif
    62 
    63 ALWAYS_INLINE bool isIOS()
    64 {
    65 #if PLATFORM(IOS)
    66     return true;
    67 #else
    68     return false;
    69 #endif
    70 }
    7163}
    7264
Note: See TracChangeset for help on using the changeset viewer.