| 353 | } |
| 354 | |
| 355 | Instruction* DebugInfoManager::GetDebugInlinedAt(uint32_t dbg_inlined_at_id) { |
| 356 | auto* inlined_at = GetDbgInst(dbg_inlined_at_id); |
| 357 | if (inlined_at == nullptr) return nullptr; |
| 358 | if (inlined_at->GetOpenCL100DebugOpcode() != |
| 359 | OpenCLDebugInfo100DebugInlinedAt) { |
| 360 | return nullptr; |
| 361 | } |
| 362 | return inlined_at; |
| 363 | } |
| 364 | |
| 365 | Instruction* DebugInfoManager::CloneDebugInlinedAt(uint32_t clone_inlined_at_id, |
| 366 | Instruction* insert_before) { |
no test coverage detected