diff options
| author | Vexu <git@vexu.eu> | 2020-03-09 12:31:36 +0200 |
|---|---|---|
| committer | Vexu <git@vexu.eu> | 2020-03-09 12:33:24 +0200 |
| commit | 3618256c97a9988f7d623eeabb667010ca30656f (patch) | |
| tree | 0e6e0d8f3fc958809ffe9ea007416738d136c032 /src/codegen.cpp | |
| parent | 6f8d732599461aa816f545b658a068eceb6ac9bc (diff) | |
| download | zig-3618256c97a9988f7d623eeabb667010ca30656f.tar.gz zig-3618256c97a9988f7d623eeabb667010ca30656f.zip | |
implement noasync scopes
Diffstat (limited to 'src/codegen.cpp')
| -rw-r--r-- | src/codegen.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/codegen.cpp b/src/codegen.cpp index ef567c27aa..52ac2e7936 100644 --- a/src/codegen.cpp +++ b/src/codegen.cpp @@ -687,6 +687,7 @@ static ZigLLVMDIScope *get_di_scope(CodeGen *g, Scope *scope) { case ScopeIdLoop: case ScopeIdSuspend: case ScopeIdCompTime: + case ScopeIdNoAsync: case ScopeIdRuntime: case ScopeIdTypeOf: case ScopeIdExpr: @@ -3934,6 +3935,7 @@ static void render_async_var_decls(CodeGen *g, Scope *scope) { case ScopeIdLoop: case ScopeIdSuspend: case ScopeIdCompTime: + case ScopeIdNoAsync: case ScopeIdRuntime: case ScopeIdTypeOf: case ScopeIdExpr: |
