comparison src/share/vm/classfile/classFileParser.cpp @ 9160:f2aebc22372a

Fix hotspot optimized build
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 16 Apr 2013 17:17:22 +0200
parents 9befe2fce567
children 836a62f43af9
comparison
equal deleted inserted replaced
9159:43223d3f5dcd 9160:f2aebc22372a
3039 } 3039 }
3040 return annotations; 3040 return annotations;
3041 } 3041 }
3042 3042
3043 3043
3044 #ifndef PRODUCT 3044 #ifdef ASSERT
3045 static void parseAndPrintGenericSignatures( 3045 static void parseAndPrintGenericSignatures(
3046 instanceKlassHandle this_klass, TRAPS) { 3046 instanceKlassHandle this_klass, TRAPS) {
3047 assert(ParseAllGenericSignatures == true, "Shouldn't call otherwise"); 3047 assert(ParseAllGenericSignatures == true, "Shouldn't call otherwise");
3048 ResourceMark rm; 3048 ResourceMark rm;
3049 3049
3064 tty->print_cr("Parsing %s", sig->as_C_string()); 3064 tty->print_cr("Parsing %s", sig->as_C_string());
3065 method_spec->print_on(tty); 3065 method_spec->print_on(tty);
3066 } 3066 }
3067 } 3067 }
3068 } 3068 }
3069 #endif // ndef PRODUCT 3069 #endif // ASSERT
3070 3070
3071 3071
3072 instanceKlassHandle ClassFileParser::parse_super_class(int super_class_index, 3072 instanceKlassHandle ClassFileParser::parse_super_class(int super_class_index,
3073 TRAPS) { 3073 TRAPS) {
3074 instanceKlassHandle super_klass; 3074 instanceKlassHandle super_klass;