mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8019973: PPC64 (part 11): Fix IA64 preprocessor conditionals on AIX
On AIX 7.1 systemcfg.h defines IA64 unconditionally, so test for !AIX where IA64 is used. Reviewed-by: dholmes, kvn
This commit is contained in:
parent
49c4939936
commit
b57506ea6c
7 changed files with 14 additions and 10 deletions
|
@ -54,7 +54,7 @@
|
|||
# include "os_bsd.inline.hpp"
|
||||
#endif
|
||||
|
||||
#if defined(__GNUC__) && !defined(IA64)
|
||||
#if defined(__GNUC__) && !defined(IA64) && !defined(PPC64)
|
||||
// Need to inhibit inlining for older versions of GCC to avoid build-time failures
|
||||
#define ATTR __attribute__((noinline))
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue