Skip to content

Commit 5e78726

Browse files
committed
Do not force SerialGC on renaissance gates
1 parent 8027fec commit 5e78726

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/mx.compiler/mx_compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ def _gate_scala_dacapo(name, iterations, extraVMarguments=None):
410410
def _gate_renaissance(name, iterations, extraVMarguments=None):
411411
if iterations == -1:
412412
return
413-
vmargs = ['-Xms2g', '-XX:+UseSerialGC', '-XX:-UseCompressedOops'] + _compiler_error_options() + _remove_empty_entries(extraVMarguments)
413+
vmargs = ['-Xms2g', '-XX:-UseCompressedOops'] + _compiler_error_options() + _remove_empty_entries(extraVMarguments)
414414
args = ['-r', str(iterations)]
415415
return _run_benchmark('renaissance', name, args, vmargs)
416416

0 commit comments

Comments
 (0)