Details
-
Enhancement
-
Resolution: Fixed
-
P4
-
11-shenandoah, 13
-
b24
Backports
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8225983 | 14 | Aleksey Shipilev | P4 | Resolved | Fixed | team |
Description
Use:
#if COMPILER2_OR_JVMCI
...instead of:
#if defined(COMPILER2) || INCLUDE_JVMCI
This is cleaner and safer (in case COMPILER2 is actually globally defined but not available in current compilation unit).
#if COMPILER2_OR_JVMCI
...instead of:
#if defined(COMPILER2) || INCLUDE_JVMCI
This is cleaner and safer (in case COMPILER2 is actually globally defined but not available in current compilation unit).
Attachments
Issue Links
- backported by
-
JDK-8225983 Shenandoah: use COMPILER2_OR_JVMCI macro consistently
- Resolved
- relates to
-
JDK-8152470 Add COMPILER2_OR_JVMCI definition
- Resolved