comparison src/share/vm/runtime/arguments.cpp @ 22444:d70fa3eef37d

Remove leftover code from when G1 wasn't supported
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Thu, 20 Aug 2015 18:06:39 -0700
parents 4a532b03e2cd
children d113a94d4fdd
comparison
equal deleted inserted replaced
22443:fddb4d4ce5b6 22444:d70fa3eef37d
2436 #if INCLUDE_NMT 2436 #if INCLUDE_NMT
2437 } 2437 }
2438 #endif 2438 #endif
2439 } 2439 }
2440 #if INCLUDE_JVMCI 2440 #if INCLUDE_JVMCI
2441 if (UseG1GC) {
2442 if (IgnoreUnrecognizedVMOptions) {
2443 FLAG_SET_CMDLINE(bool, UseG1GC, true);
2444 } else {
2445 status = true;
2446 }
2447 } else {
2448 // This prevents the flag being set to true by set_ergonomics_flags()
2449 FLAG_SET_CMDLINE(bool, UseG1GC, false);
2450 }
2451
2452 if (!ScavengeRootsInCode) { 2441 if (!ScavengeRootsInCode) {
2453 warning("forcing ScavengeRootsInCode non-zero because JVMCI is enabled"); 2442 warning("forcing ScavengeRootsInCode non-zero because JVMCI is enabled");
2454 ScavengeRootsInCode = 1; 2443 ScavengeRootsInCode = 1;
2455 } 2444 }
2456 if (TypeProfileLevel != 0) { 2445 if (TypeProfileLevel != 0) {