comparison src/share/vm/classfile/resolutionErrors.cpp @ 1489:cff162798819

6888953: some calls to function-like macros are missing semicolons Reviewed-by: pbk, kvn
author jcoomes
date Sun, 11 Oct 2009 16:19:25 -0700
parents a61af66fc99e
children c18cbe5936b8
comparison
equal deleted inserted replaced
1488:615a9d95d265 1489:cff162798819
100 } 100 }
101 } 101 }
102 102
103 // Remove unloaded entries from the table 103 // Remove unloaded entries from the table
104 void ResolutionErrorTable::purge_resolution_errors(BoolObjectClosure* is_alive) { 104 void ResolutionErrorTable::purge_resolution_errors(BoolObjectClosure* is_alive) {
105 assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint") 105 assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
106 for (int i = 0; i < table_size(); i++) { 106 for (int i = 0; i < table_size(); i++) {
107 for (ResolutionErrorEntry** p = bucket_addr(i); *p != NULL; ) { 107 for (ResolutionErrorEntry** p = bucket_addr(i); *p != NULL; ) {
108 ResolutionErrorEntry* entry = *p; 108 ResolutionErrorEntry* entry = *p;
109 assert(entry->pool() != (constantPoolOop)NULL, "resolution error table is corrupt"); 109 assert(entry->pool() != (constantPoolOop)NULL, "resolution error table is corrupt");
110 constantPoolOop pool = entry->pool(); 110 constantPoolOop pool = entry->pool();