mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
8182656: Make the required changes in GC code to build on OSX 10 + Xcode 8 8182657: Make the required changes in Runtime code to build on OSX 10 + Xcode 8 8182658: Make the required changes in Compiler code to build on OSX 10 + Xcode 8 Co-authored-by: Paul Hohensee <hohensee@amazon.com> Reviewed-by: jwilhelm, ehelin, phh
This commit is contained in:
parent
eb20e62194
commit
efd1054686
142 changed files with 787 additions and 526 deletions
|
@ -197,13 +197,13 @@ bool JavaAssertions::enabled(const char* classname, bool systemClass) {
|
|||
|
||||
// First check options that apply to classes. If we find a match we're done.
|
||||
OptionList* p;
|
||||
if (p = match_class(classname)) {
|
||||
if ((p = match_class(classname))) {
|
||||
trace(classname, "class", p->name(), p->enabled());
|
||||
return p->enabled();
|
||||
}
|
||||
|
||||
// Now check packages, from most specific to least.
|
||||
if (p = match_package(classname)) {
|
||||
if ((p = match_package(classname))) {
|
||||
trace(classname, "package", p->name(), p->enabled());
|
||||
return p->enabled();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue