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