changeset 16785:af3da93ea934

Remove debug output.
author Roland Schatz <roland.schatz@oracle.com>
date Tue, 12 Aug 2014 14:54:36 +0200
parents 88df5d7b1001
children 45c8f64978d6
files graal/com.oracle.graal.hotspot.amd64/src/com/oracle/graal/hotspot/amd64/AMD64HotSpotLIRGenerator.java
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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));