changeset 49972 | 37b2446d7f86 |
parent 49906 | 4bb58f644e4e |
child 49982 | 9042ffe5b7fe |
--- a/src/hotspot/share/utilities/macros.hpp Mon Apr 30 15:55:21 2018 +0200 +++ b/src/hotspot/share/utilities/macros.hpp Thu May 03 09:07:40 2018 -0700 @@ -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