Changeset 52806 in webkit


Ignore:
Timestamp:
Jan 5, 2010 10:36:46 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-05 Patrick Gansterer <paroga@paroga.com>

Reviewed by Darin Adler.

Added compiler error for unsupported platforms.
https://bugs.webkit.org/show_bug.cgi?id=33112

  • jit/JITStubs.cpp:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r52797 r52806  
     12010-01-05  Patrick Gansterer  <paroga@paroga.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        Added compiler error for unsupported platforms.
     6        https://bugs.webkit.org/show_bug.cgi?id=33112
     7
     8        * jit/JITStubs.cpp:
     9
    1102010-01-05  Gabor Loki  <loki@webkit.org>
    211
  • trunk/JavaScriptCore/jit/JITStubs.cpp

    r52791 r52806  
    333333);
    334334
    335 #elif COMPILER(MSVC)
     335#elif COMPILER(MSVC) && CPU(X86)
    336336
    337337#if USE(JIT_STUB_ARGUMENT_VA_LIST)
     
    397397}
    398398
    399 #endif // COMPILER(GCC) && CPU(X86)
     399#else
     400    #error "JIT not supported on this platform."
     401#endif
    400402
    401403#else // USE(JSVALUE32_64)
     
    640642);
    641643
    642 #elif COMPILER(MSVC)
     644#elif COMPILER(MSVC) && CPU(X86)
    643645
    644646#if USE(JIT_STUB_ARGUMENT_VA_LIST)
     
    703705}
    704706
    705 #endif // COMPILER(GCC) && CPU(X86)
     707#else
     708    #error "JIT not supported on this platform."
     709#endif
    706710
    707711#endif // USE(JSVALUE32_64)
Note: See TracChangeset for help on using the changeset viewer.