comparison src/share/vm/runtime/synchronizer.cpp @ 14460:8a9bb7821e28

Merge
author kvn
date Wed, 19 Feb 2014 12:08:49 -0800
parents e7d8cbe4db3b abec000618bf
children 28f281e8de1d
comparison
equal deleted inserted replaced
14360:e8ef156f0bc9 14460:8a9bb7821e28
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