comparison src/share/vm/runtime/reflection.cpp @ 14318:1020b892787b

Merge
author hseigel
date Sun, 02 Feb 2014 15:31:40 -0500
parents 63a4eb8bcd23
children 016b6a289fc4
comparison
equal deleted inserted replaced
14317:b59507f713e0 14318:1020b892787b
480 if (hc == NULL) return false; 480 if (hc == NULL) return false;
481 if (hc == host_klass) return true; 481 if (hc == host_klass) return true;
482 ik = InstanceKlass::cast(hc); 482 ik = InstanceKlass::cast(hc);
483 483
484 // There's no way to make a host class loop short of patching memory. 484 // There's no way to make a host class loop short of patching memory.
485 // Therefore there cannot be a loop here unles there's another bug. 485 // Therefore there cannot be a loop here unless there's another bug.
486 // Still, let's check for it. 486 // Still, let's check for it.
487 assert(--inf_loop_check > 0, "no host_klass loop"); 487 assert(--inf_loop_check > 0, "no host_klass loop");
488 } 488 }
489 } 489 }
490 490