The local bitmap is pre-filled with 1s. Clear only if invalid.
| 1414 | |
| 1415 | /// The local bitmap is pre-filled with 1s. Clear only if invalid. |
| 1416 | void LLVMGenerator::Visitor::ClearLocalBitMapIfNotValid(int local_bitmap_idx, |
| 1417 | llvm::Value* is_valid) { |
| 1418 | llvm::Value* slot_ref = GetLocalBitMapReference(local_bitmap_idx); |
| 1419 | generator_->ClearPackedBitValueIfFalse(slot_ref, loop_var_, is_valid); |
| 1420 | } |
| 1421 | |
| 1422 | // Hooks for tracing/printfs. |
| 1423 | // |
nothing calls this directly
no test coverage detected