Changeset 61475 in webkit


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

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

Reviewed by Kenneth Rohde Christiansen.

Don't use attribute((may_alias)) with the Intel compiler,
as it doesn't understand it.

  • wtf/Vector.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r61474 r61475  
     12010-06-19  Thiago Macieira <thiago.macieira@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        Don't use __attribute__((may_alias)) with the Intel compiler,
     6        as it doesn't understand it.
     7
     8        * wtf/Vector.h:
     9
    1102010-06-19  Thiago Macieira <thiago.macieira@nokia.com>
    211
  • trunk/JavaScriptCore/wtf/Vector.h

    r60738 r61475  
    5050    #endif
    5151
    52     #if COMPILER(GCC) && (((__GNUC__ * 100) + __GNUC_MINOR__) >= 303)
     52    #if COMPILER(GCC) && !COMPILER(INTEL) && (((__GNUC__ * 100) + __GNUC_MINOR__) >= 303)
    5353        typedef char __attribute__((__may_alias__)) AlignedBufferChar;
    5454    #else
Note: See TracChangeset for help on using the changeset viewer.