8202552: [AOT][JVMCI] Incorrect usage of INCLUDE_JVMCI and INCLUDE_AOT

Reviewed-by: stefank, ihse
This commit is contained in:
Vladimir Kozlov 2018-05-03 09:07:40 -07:00
parent 6a12519d84
commit 8ebfc59cfa
8 changed files with 27 additions and 28 deletions

View file

@ -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