comparison src/share/vm/classfile/classFileParser.cpp @ 10275:d73c88e524ff

Merge
author kvn
date Fri, 03 May 2013 15:35:30 -0700
parents d1644a010f52 e76dd894b984
children e484fe2abebd
comparison
equal deleted inserted replaced
10212:625ddb0052e1 10275:d73c88e524ff
3026 } 3026 }
3027 return annotations; 3027 return annotations;
3028 } 3028 }
3029 3029
3030 3030
3031 #ifndef PRODUCT 3031 #ifdef ASSERT
3032 static void parseAndPrintGenericSignatures( 3032 static void parseAndPrintGenericSignatures(
3033 instanceKlassHandle this_klass, TRAPS) { 3033 instanceKlassHandle this_klass, TRAPS) {
3034 assert(ParseAllGenericSignatures == true, "Shouldn't call otherwise"); 3034 assert(ParseAllGenericSignatures == true, "Shouldn't call otherwise");
3035 ResourceMark rm; 3035 ResourceMark rm;
3036 3036
3051 tty->print_cr("Parsing %s", sig->as_C_string()); 3051 tty->print_cr("Parsing %s", sig->as_C_string());
3052 method_spec->print_on(tty); 3052 method_spec->print_on(tty);
3053 } 3053 }
3054 } 3054 }
3055 } 3055 }
3056 #endif // ndef PRODUCT 3056 #endif // def ASSERT
3057 3057
3058 3058
3059 instanceKlassHandle ClassFileParser::parse_super_class(int super_class_index, 3059 instanceKlassHandle ClassFileParser::parse_super_class(int super_class_index,
3060 TRAPS) { 3060 TRAPS) {
3061 instanceKlassHandle super_klass; 3061 instanceKlassHandle super_klass;