open Udiff src/hotspot/share/utilities/macros.hpp (original) (raw)
@@ -139,13 +139,15 @@ #ifndef INCLUDE_ALL_GCS #define INCLUDE_ALL_GCS 1 #endif // INCLUDE_ALL_GCS
#if INCLUDE_ALL_GCS +#define ALL_GCS_ONLY(x) x #define NOT_ALL_GCS_RETURN /* next token must be ; / #define NOT_ALL_GCS_RETURN_(code) / next token must be ; */ #else +#define ALL_GCS_ONLY(x) #define NOT_ALL_GCS_RETURN {} #define NOT_ALL_GCS_RETURN_(code) { return code; } #endif // INCLUDE_ALL_GCS
#ifndef INCLUDE_NMT