changeset 9892:3d965e61b5f6

Unsuccessful attempt to save r12 when heap base is zero, verification uses it
author Christos Kotselidis <christos.kotselidis@oracle.com>
date Wed, 05 Jun 2013 12:01:05 +0200
parents 558c73d8bdc0
children b132d7666ac8
files graal/com.oracle.graal.hotspot.amd64/src/com/oracle/graal/hotspot/amd64/AMD64HotSpotRegisterConfig.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot.amd64/src/com/oracle/graal/hotspot/amd64/AMD64HotSpotRegisterConfig.java	Wed Jun 05 12:00:36 2013 +0200
+++ b/graal/com.oracle.graal.hotspot.amd64/src/com/oracle/graal/hotspot/amd64/AMD64HotSpotRegisterConfig.java	Wed Jun 05 12:01:05 2013 +0200
@@ -128,7 +128,7 @@
         }
 
         csl = null;
-        allocatable = initAllocatable(config.useCompressedOops && (config.narrowOopBase != 0));
+        allocatable = initAllocatable(config.useCompressedOops);
         attributesMap = RegisterAttributes.createMap(this, AMD64.allRegisters);
     }