# HG changeset patch # User Doug Simon # Date 1353447320 -3600 # Node ID edb2d7ed9a01b65610fa7bcdbd480c56912aecbd # Parent fd1c171d99696760b4bf5c1a721364773ecef272 ensure UseCompressedKlassPointers is disabled in Graal VM diff -r fd1c171d9969 -r edb2d7ed9a01 src/share/vm/runtime/arguments.cpp --- 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");