changeset 2047:eb575e79136f

Fixed an issue that caused the client compiler to fail in the graal configuration.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Fri, 07 Jan 2011 19:08:13 +0100
parents cf75612bdaa5
children 177398c6147d
files src/share/vm/ci/ciField.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/ci/ciField.cpp	Fri Jan 07 18:48:48 2011 +0100
+++ b/src/share/vm/ci/ciField.cpp	Fri Jan 07 19:08:13 2011 +0100
@@ -306,7 +306,7 @@
 bool ciField::will_link(ciInstanceKlass* accessing_klass,
                         Bytecodes::Code bc) {
   VM_ENTRY_MARK;
-  will_link_from_vm(accessing_klass, bc);
+  return will_link_from_vm(accessing_klass, bc);
 }
 
 // ------------------------------------------------------------------