@@ -137,8 +137,8 @@ void BootstrapInfo::resolve_args(TRAPS) {
137
137
assert (_bsm.not_null (), " resolve_bsm first" );
138
138
139
139
// if there are no static arguments, return leaving _arg_values as null
140
- BSMAttributeEntry* attr = bsm_attr ();
141
- int argc = attr-> argument_count ();
140
+ BSMAttributeEntry& attr = bsm_attr ();
141
+ int argc = attr. argument_count ();
142
142
if (argc == 0 && UseBootstrapCallInfo < 2 ) return ;
143
143
144
144
bool use_BSCI;
@@ -166,7 +166,7 @@ void BootstrapInfo::resolve_args(TRAPS) {
166
166
if (!use_BSCI && _pool->tag_at (_bss_index).is_dynamic_constant ()) {
167
167
bool found_unresolved_condy = false ;
168
168
for (int i = 0 ; i < argc; i++) {
169
- int arg_index = attr-> argument_index (i);
169
+ int arg_index = attr. argument_index (i);
170
170
if (_pool->tag_at (arg_index).is_dynamic_constant ()) {
171
171
// potential recursion point condy -> condy
172
172
bool found_it = false ;
@@ -190,7 +190,7 @@ void BootstrapInfo::resolve_args(TRAPS) {
190
190
bool all_resolved = true ;
191
191
for (int i = 0 ; i < argc; i++) {
192
192
bool found_it = false ;
193
- int arg_index = attr-> argument_index (i);
193
+ int arg_index = attr. argument_index (i);
194
194
_pool->find_cached_constant_at (arg_index, found_it, CHECK);
195
195
if (!found_it) {
196
196
all_resolved = false ;
0 commit comments