Changeset 27241 in vbox
- Timestamp:
- Mar 10, 2010 10:49:33 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/asm.h
r26526 r27241 159 159 /** @def RT_INLINE_ASM_GCC_4_3_X_X86 160 160 * Used to work around some 4.3.x register allocation issues in this version of 161 * the compiler. */161 * the compiler. So far this workaround is still required for 4.4 and 4.5. */ 162 162 #ifdef __GNUC__ 163 # define RT_INLINE_ASM_GCC_4_3_X_X86 (__GNUC__ == 4 && __GNUC_MINOR__ == 3 && defined(__i386__))163 # define RT_INLINE_ASM_GCC_4_3_X_X86 (__GNUC__ == 4 && __GNUC_MINOR__ >= 3 && defined(__i386__)) 164 164 #endif 165 165 #ifndef RT_INLINE_ASM_GCC_4_3_X_X86
Note:
See TracChangeset
for help on using the changeset viewer.