8140424: don't prefix developer and notproduct flag variables with CONST_ in product builds

Reviewed-by: goetz, stefank
This commit is contained in:
Christian Thalinger 2015-11-11 16:32:17 -10:00
parent c4ce43c1ac
commit 6896030b96
33 changed files with 138 additions and 200 deletions

View file

@ -134,7 +134,6 @@ void FastScanClosure::do_oop(oop* p) { FastScanClosure::do_oop_work(p); }
void FastScanClosure::do_oop(narrowOop* p) { FastScanClosure::do_oop_work(p); }
void KlassScanClosure::do_klass(Klass* klass) {
#ifndef PRODUCT
if (TraceScavenge) {
ResourceMark rm;
gclog_or_tty->print_cr("KlassScanClosure::do_klass " PTR_FORMAT ", %s, dirty: %s",
@ -142,7 +141,6 @@ void KlassScanClosure::do_klass(Klass* klass) {
klass->external_name(),
klass->has_modified_oops() ? "true" : "false");
}
#endif
// If the klass has not been dirtied we know that there's
// no references into the young gen and we can skip it.