diff src/share/vm/ci/ciField.cpp @ 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 06f017f7daa7
children d25d4ca69222
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);
 }
 
 // ------------------------------------------------------------------