6956164: nightly regressions from 6939207

Fix errors in 6939207.

Reviewed-by: kvn
This commit is contained in:
John R Rose 2010-05-27 09:54:07 -07:00
parent 66b26ccfb4
commit 05b4f2e796
5 changed files with 31 additions and 17 deletions

View file

@ -212,5 +212,5 @@ class BytecodeStream: public BaseBytecodeStream {
return bytecode()->get_index_u2_cpcache(raw_code()); }
int get_index_u4() const { assert_raw_stream(false);
return bytecode()->get_index_u4(raw_code()); }
int has_index_u4() const { return bytecode()->get_index_u4(raw_code()); }
bool has_index_u4() const { return bytecode()->has_index_u4(raw_code()); }
};