| ... | ... | @@ -704,7 +704,6 @@ static ZigLLVMDIScope *get_di_scope(CodeGen *g, Scope *scope) { |
| 704 | 704 | return scope->di_scope; |
| 705 | 705 | case ScopeIdBlock: |
| 706 | 706 | case ScopeIdDefer: |
| 707 | | case ScopeIdVarDecl: |
| 708 | 707 | { |
| 709 | 708 | assert(scope->parent); |
| 710 | 709 | ZigLLVMDILexicalBlock *di_block = ZigLLVMCreateLexicalBlock(g->dbuilder, |
| ... | ... | @@ -715,6 +714,7 @@ static ZigLLVMDIScope *get_di_scope(CodeGen *g, Scope *scope) { |
| 715 | 714 | scope->di_scope = ZigLLVMLexicalBlockToScope(di_block); |
| 716 | 715 | return scope->di_scope; |
| 717 | 716 | } |
| 717 | case ScopeIdVarDecl: |
| 718 | 718 | case ScopeIdDeferExpr: |
| 719 | 719 | case ScopeIdLoop: |
| 720 | 720 | case ScopeIdSuspend: |