mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +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
|
@ -1020,7 +1020,7 @@ void os::print_location(outputStream* st, intptr_t x, bool verbose) {
|
|||
// if C stack is walkable beyond current frame. The check for fp() is not
|
||||
// necessary on Sparc, but it's harmless.
|
||||
bool os::is_first_C_frame(frame* fr) {
|
||||
#if defined(IA64) && !defined(_WIN32)
|
||||
#if (defined(IA64) && !defined(AIX)) && !defined(_WIN32)
|
||||
// On IA64 we have to check if the callers bsp is still valid
|
||||
// (i.e. within the register stack bounds).
|
||||
// Notice: this only works for threads created by the VM and only if
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue