Changeset 61474 in webkit


Ignore:
Timestamp:
Jun 19, 2010 2:23:15 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-06-19 Thiago Macieira <thiago.macieira@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

Fix compilation with the Intel C++ compiler (11.1.072).

Like RVCT, label pointers must be void*, not const void*.

  • bytecode/Opcode.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r61473 r61474  
     12010-06-19  Thiago Macieira <thiago.macieira@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        Fix compilation with the Intel C++ compiler (11.1.072).
     6
     7        Like RVCT, label pointers must be void*, not const void*.
     8
     9        * bytecode/Opcode.h:
     10
    1112010-06-19  Thiago Macieira <thiago.macieira@nokia.com>
    212
  • trunk/JavaScriptCore/bytecode/Opcode.h

    r60117 r61474  
    212212
    213213#if HAVE(COMPUTED_GOTO)
    214 #if COMPILER(RVCT)
     214#if COMPILER(RVCT) || COMPILER(INTEL)
    215215    typedef void* Opcode;
    216216#else
Note: See TracChangeset for help on using the changeset viewer.