diff options
Diffstat (limited to 'src/tilde_stmt.cpp')
| -rw-r--r-- | src/tilde_stmt.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tilde_stmt.cpp b/src/tilde_stmt.cpp index 2952539ca..2f2bdd55f 100644 --- a/src/tilde_stmt.cpp +++ b/src/tilde_stmt.cpp @@ -376,6 +376,10 @@ gb_internal void cg_build_assignment(cgProcedure *p, Array<cgAddr> const &lvals, for_array(i, inits) { cgAddr lval = lvals[i]; cgValue init = inits[i]; + if (init.type == nullptr) { + // TODO(bill): figure out how to do this + continue; + } cg_addr_store(p, lval, init); } |