| 438 | } |
| 439 | |
| 440 | Instruction* DebugInfoManager::GetDebugInlinedAt(uint32_t dbg_inlined_at_id) { |
| 441 | auto* inlined_at = GetDbgInst(dbg_inlined_at_id); |
| 442 | if (inlined_at == nullptr) return nullptr; |
| 443 | if (inlined_at->GetCommonDebugOpcode() != CommonDebugInfoDebugInlinedAt) { |
| 444 | return nullptr; |
| 445 | } |
| 446 | return inlined_at; |
| 447 | } |
| 448 | |
| 449 | Instruction* DebugInfoManager::CloneDebugInlinedAt(uint32_t clone_inlined_at_id, |
| 450 | Instruction* insert_before) { |