| 668 | } |
| 669 | |
| 670 | bool DebugInfoManager::IsDebugDeclare(Instruction* instr) { |
| 671 | if (!instr->IsCommonDebugInstr()) return false; |
| 672 | return instr->GetCommonDebugOpcode() == CommonDebugInfoDebugDeclare || |
| 673 | GetVariableIdOfDebugValueUsedForDeclare(instr) != 0; |
| 674 | } |
| 675 | |
| 676 | void DebugInfoManager::ReplaceAllUsesInDebugScopeWithPredicate( |
| 677 | uint32_t before, uint32_t after, |
no test coverage detected