mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
Merge
This commit is contained in:
commit
c660647bfa
27 changed files with 544 additions and 132 deletions
|
@ -845,6 +845,10 @@ inline bool is_highest_tier_compile(int comp_level) {
|
|||
return comp_level == CompLevel_highest_tier;
|
||||
}
|
||||
|
||||
inline bool is_compile(int comp_level) {
|
||||
return is_c1_compile(comp_level) || is_c2_compile(comp_level);
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
// 'Forward' declarations of frequently used classes
|
||||
// (in order to reduce interface dependencies & reduce
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue