mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 05:45:11 +02:00
8000780: make Zero build and run with JDK8
Reviewed-by: coleenp, dholmes, twisti
This commit is contained in:
parent
f0534ca470
commit
e184d5cc4e
21 changed files with 323 additions and 617 deletions
|
@ -282,6 +282,22 @@
|
|||
#define NOT_WIN64(code) code
|
||||
#endif
|
||||
|
||||
#if defined(ZERO)
|
||||
#define ZERO_ONLY(code) code
|
||||
#define NOT_ZERO(code)
|
||||
#else
|
||||
#define ZERO_ONLY(code)
|
||||
#define NOT_ZERO(code) code
|
||||
#endif
|
||||
|
||||
#if defined(SHARK)
|
||||
#define SHARK_ONLY(code) code
|
||||
#define NOT_SHARK(code)
|
||||
#else
|
||||
#define SHARK_ONLY(code)
|
||||
#define NOT_SHARK(code) code
|
||||
#endif
|
||||
|
||||
#if defined(IA32) || defined(AMD64)
|
||||
#define X86
|
||||
#define X86_ONLY(code) code
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue