Changeset 38173 in webkit for trunk/JavaScriptCore/wtf/Vector.h


Ignore:
Timestamp:
Nov 6, 2008, 9:47:58 AM (17 years ago)
Author:
Simon Hausmann
Message:

2008-11-06 Kristian Amlie <[email protected]>

Reviewed by Simon Hausmann.

Use the GCC defines of the WTF_ALIGN* macros for the RVCT and the
MINSCW compiler.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/Vector.h

    r37526 r38173  
    3838
    3939    // WTF_ALIGN_OF / WTF_ALIGNED
    40     #if COMPILER(GCC) || COMPILER(MINGW)
     40    #if COMPILER(GCC) || COMPILER(MINGW) || COMPILER(RVCT) || COMPILER(WINSCW)
    4141        #define WTF_ALIGN_OF(type) __alignof__(type)
    4242        #define WTF_ALIGNED(variable_type, variable, n) variable_type variable __attribute__((__aligned__(n)))
Note: See TracChangeset for help on using the changeset viewer.