(
instruction_index: usize,
offset: i32,
context: &str,
)
| 1366 | &mut state, |
| 1367 | *local, |
| 1368 | FrameValue::Float, |
| 1369 | context, |
| 1370 | instruction_index, |
| 1371 | )?, |
| 1372 | I::Dstore_w(local) => store_fixed( |
| 1373 | &mut state, |
| 1374 | *local, |
| 1375 | FrameValue::Double, |
| 1376 | context, |
| 1377 | instruction_index, |
| 1378 | )?, |
| 1379 | I::Astore_w(local) => { |
| 1380 | store_reference_fixed(&mut state, *local, context, instruction_index)? |
| 1381 | } |
| 1382 | |
| 1383 | I::Iaload | I::Baload | I::Caload | I::Saload => { |
| 1384 | state.pop(context, instruction_index)?; |
no test coverage detected