mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8202552: [AOT][JVMCI] Incorrect usage of INCLUDE_JVMCI and INCLUDE_AOT
Reviewed-by: stefank, ihse
This commit is contained in:
parent
6a12519d84
commit
8ebfc59cfa
8 changed files with 27 additions and 28 deletions
|
@ -172,12 +172,12 @@
|
|||
#define INCLUDE_JVMCI 1
|
||||
#endif
|
||||
|
||||
#ifdef INCLUDE_AOT
|
||||
# if INCLUDE_AOT && !(INCLUDE_JVMCI)
|
||||
# error "Must have JVMCI for AOT"
|
||||
# endif
|
||||
#else
|
||||
# define INCLUDE_AOT 0
|
||||
#ifndef INCLUDE_AOT
|
||||
#define INCLUDE_AOT 1
|
||||
#endif
|
||||
|
||||
#if INCLUDE_AOT && !INCLUDE_JVMCI
|
||||
# error "Must have JVMCI for AOT"
|
||||
#endif
|
||||
|
||||
#if INCLUDE_JVMCI
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue