Changeset 53891 in webkit


Ignore:
Timestamp:
Jan 26, 2010 8:20:33 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-26 Lyon Chen <liachen@rim.com>

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:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r53864 r53891  
     12010-01-26  Lyon Chen  <liachen@rim.com>
     2
     3        Reviewed by Maciej Stachowiak.
     4
     5        Opcode.h use const void* for Opcode cause error #1211 for RVCT compiler
     6        https://bugs.webkit.org/show_bug.cgi?id=33902
     7
     8        * bytecode/Opcode.h:
     9
    1102010-01-26  Steve Falkenburg  <sfalken@apple.com>
    211
  • 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.