Ignore:
Timestamp:
Jan 26, 2010, 8:20:33 PM (15 years ago)
Author:
[email protected]
Message:

2010-01-26 Lyon Chen <[email protected]>

Reviewed by Maciej Stachowiak.

Opcode.h use const void* for Opcode cause error #1211 for RVCT compiler
https://bugs.webkit.org/show_bug.cgi?id=33902

  • bytecode/Opcode.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/bytecode/Opcode.h

    r52231 r53891  
    197197
    198198#if HAVE(COMPUTED_GOTO)
     199#if COMPILER(RVCT)
     200    typedef void* Opcode;
     201#else
    199202    typedef const void* Opcode;
     203#endif
    200204#else
    201205    typedef OpcodeID Opcode;
Note: See TracChangeset for help on using the changeset viewer.