comparison src/share/vm/runtime/synchronizer.cpp @ 14403:75ef1a499665

8019973: PPC64 (part 11): Fix IA64 preprocessor conditionals on AIX. Summary: On AIX 7.1 systemcfg.h defines IA64 unconditionally, so test for !AIX where IA64 is used. Reviewed-by: dholmes, kvn
author goetz
date Fri, 05 Jul 2013 22:17:47 +0200
parents f2110083203d
children 2b8e28fdf503
comparison
equal deleted inserted replaced
14402:faf0c78e906b 14403:75ef1a499665
51 #endif 51 #endif
52 #ifdef TARGET_OS_FAMILY_bsd 52 #ifdef TARGET_OS_FAMILY_bsd
53 # include "os_bsd.inline.hpp" 53 # include "os_bsd.inline.hpp"
54 #endif 54 #endif
55 55
56 #if defined(__GNUC__) 56 #if defined(__GNUC__) && !defined(PPC64)
57 // Need to inhibit inlining for older versions of GCC to avoid build-time failures 57 // Need to inhibit inlining for older versions of GCC to avoid build-time failures
58 #define ATTR __attribute__((noinline)) 58 #define ATTR __attribute__((noinline))
59 #else 59 #else
60 #define ATTR 60 #define ATTR
61 #endif 61 #endif