mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8012292: optimized build with GCC broken
Some #ifndef PRODUCT should be #ifdef ASSERT Reviewed-by: kvn, twisti
This commit is contained in:
parent
20b5d3aa4f
commit
34da1742ef
5 changed files with 11 additions and 11 deletions
|
@ -3046,7 +3046,7 @@ AnnotationArray* ClassFileParser::assemble_annotations(u1* runtime_visible_annot
|
|||
}
|
||||
|
||||
|
||||
#ifndef PRODUCT
|
||||
#ifdef ASSERT
|
||||
static void parseAndPrintGenericSignatures(
|
||||
instanceKlassHandle this_klass, TRAPS) {
|
||||
assert(ParseAllGenericSignatures == true, "Shouldn't call otherwise");
|
||||
|
@ -3071,7 +3071,7 @@ static void parseAndPrintGenericSignatures(
|
|||
}
|
||||
}
|
||||
}
|
||||
#endif // ndef PRODUCT
|
||||
#endif // def ASSERT
|
||||
|
||||
|
||||
instanceKlassHandle ClassFileParser::parse_super_class(int super_class_index,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue