-
Enhancement
-
Resolution: Fixed
-
P4
-
None
-
b21
I notice in macros.hpp:
#ifdef ASSERT
#define DEBUG_ONLY(code) code
#define NOT_DEBUG(code)
#define NOT_DEBUG_RETURN /*next token must be ;*/
// Historical.
#define debug_only(code) code
#else // ASSERT
We can cleanup "debug_only" and rewrite all uses to "DEBUG_ONLY".
#ifdef ASSERT
#define DEBUG_ONLY(code) code
#define NOT_DEBUG(code)
#define NOT_DEBUG_RETURN /*next token must be ;*/
// Historical.
#define debug_only(code) code
#else // ASSERT
We can cleanup "debug_only" and rewrite all uses to "DEBUG_ONLY".
- links to
-
Commit(master) openjdk/jdk/db6fa592
-
Review(master) openjdk/jdk/24879