hotspot/src/share/vm/runtime/synchronizer.cpp
changeset 15475 73896d91270c
parent 15233 c06b129cf6c7
child 15853 1c4e16950e96
equal deleted inserted replaced
15474:62425bb6b9e3 15475:73896d91270c
    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__) && !defined(IA64)
    56 #if defined(__GNUC__)
    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