# HG changeset patch # User Doug Simon # Date 1365791534 -7200 # Node ID 4720f96a15b76d268bf430c111638fdff01055e2 # Parent b28c80b6ee583be95217fb5a78bc0e568046cb8a fixed minor regression diff -r b28c80b6ee58 -r 4720f96a15b7 src/share/vm/graal/graalCompiler.hpp --- a/src/share/vm/graal/graalCompiler.hpp Fri Apr 12 18:42:24 2013 +0200 +++ b/src/share/vm/graal/graalCompiler.hpp Fri Apr 12 20:32:14 2013 +0200 @@ -102,7 +102,7 @@ int cp_index; if (bc == Bytecodes::_invokedynamic) { cp_index = to_index_u4(raw_index); - assert(ConstantPool::is_invokedynamic_index(raw_index), "not an invokedynamic constant pool index"); + assert(ConstantPool::is_invokedynamic_index(cp_index), "not an invokedynamic constant pool index"); } else { assert(bc == Bytecodes::_getfield || bc == Bytecodes::_putfield || bc == Bytecodes::_getstatic || bc == Bytecodes::_putstatic ||