|
Duplicate :
|
|
|
Duplicate :
|
|
|
Relates :
|
|
JDK-8140668 :
|
CompilerControl test framework assumes that exclude option will be overriden by the following compileonly option for the same method.
But it's not true in the compilerOracle.
bool CompilerOracle::should_exclude(methodHandle method) {
if (check_predicate(ExcludeCommand, method)) {
return true;
}
if (lists[CompileOnlyCommand] != NULL) {
return !lists[CompileOnlyCommand]->match(method);
}
return false;
}
The compiler/compilercontrol/mixed/RandomValidCommandsTest.java is affected