# HG changeset patch # User Roland Schatz # Date 1407848076 -7200 # Node ID af3da93ea93436a21fadb9a0b66d12ec0e26ece9 # Parent 88df5d7b1001dbd7e81688a284ad9dd3a9b3b482 Remove debug output. diff -r 88df5d7b1001 -r af3da93ea934 graal/com.oracle.graal.hotspot.amd64/src/com/oracle/graal/hotspot/amd64/AMD64HotSpotLIRGenerator.java --- a/graal/com.oracle.graal.hotspot.amd64/src/com/oracle/graal/hotspot/amd64/AMD64HotSpotLIRGenerator.java Tue Aug 12 14:35:49 2014 +0200 +++ b/graal/com.oracle.graal.hotspot.amd64/src/com/oracle/graal/hotspot/amd64/AMD64HotSpotLIRGenerator.java Tue Aug 12 14:54:36 2014 +0200 @@ -561,7 +561,6 @@ public void emitNullCheck(Value address, LIRFrameState state) { if (address.getLIRKind().getPlatformKind() == Kind.Int) { CompressEncoding encoding = config.getOopEncoding(); - System.out.println("compressed null check: " + address + " - " + address.getKind()); if (encoding.shift <= 3) { AMD64AddressValue uncompressionAddress = emitAddress(getProviders().getRegisters().getHeapBaseRegister().asValue(), 0, load(address), 1 << encoding.shift); append(new AMD64HotSpotMove.CompressedNullCheckOp(uncompressionAddress, state));