changeset 6995:edb2d7ed9a01

ensure UseCompressedKlassPointers is disabled in Graal VM
author Doug Simon <doug.simon@oracle.com>
date Tue, 20 Nov 2012 22:35:20 +0100
parents fd1c171d9969
children eec373d34caf
files src/share/vm/runtime/arguments.cpp
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/runtime/arguments.cpp	Tue Nov 20 12:25:10 2012 +0100
+++ b/src/share/vm/runtime/arguments.cpp	Tue Nov 20 22:35:20 2012 +0100
@@ -2029,6 +2029,11 @@
                     "CompressedOops are not supported in Graal at the moment\n");
         status = false;
   }
+  if (UseCompressedKlassPointers) {
+    jio_fprintf(defaultStream::error_stream(),
+                    "UseCompressedKlassPointers are not supported in Graal at the moment\n");
+        status = false;
+  }
   if (UseG1GC) {
     jio_fprintf(defaultStream::error_stream(),
                         "G1 is not supported in Graal at the moment\n");