# HG changeset patch # User Thomas Wuerthinger # Date 1359646135 -3600 # Node ID 017f9c2bcb6b47cafb77616959235dd23a4f92be # Parent 16b5195c5f304c7f1e6f3bf8989176ba652c2dd5 Small code clean up. diff -r 16b5195c5f30 -r 017f9c2bcb6b graal/com.oracle.graal.hotspot.amd64/src/com/oracle/graal/hotspot/amd64/AMD64HotSpotGraalRuntime.java --- a/graal/com.oracle.graal.hotspot.amd64/src/com/oracle/graal/hotspot/amd64/AMD64HotSpotGraalRuntime.java Thu Jan 31 16:28:12 2013 +0100 +++ b/graal/com.oracle.graal.hotspot.amd64/src/com/oracle/graal/hotspot/amd64/AMD64HotSpotGraalRuntime.java Thu Jan 31 16:28:55 2013 +0100 @@ -49,7 +49,9 @@ protected TargetDescription createTarget() { final int wordSize = 8; final int stackFrameAlignment = 16; - return new TargetDescription(new AMD64(), true, stackFrameAlignment, 0, 4096, config.vmPageSize, wordSize, true, true); + final int stackBias = 0; + final int implicitNullCheckLimit = 4096; + return new TargetDescription(new AMD64(), true, stackFrameAlignment, stackBias, implicitNullCheckLimit, config.vmPageSize, wordSize, true, true); } @Override