diff options
| author | Mitchell Hashimoto <mitchell.hashimoto@gmail.com> | 2022-03-19 10:58:33 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-03-19 15:55:23 -0400 |
| commit | 67665286575d406769000b3f3e80d4d03d2cab2b (patch) | |
| tree | 7cdd00995419c5ced2b1e558975cceca8d76635c /src/codegen | |
| parent | 69e6d455ce8e21835ec3ce268a0533e0e7666e8b (diff) | |
| download | zig-67665286575d406769000b3f3e80d4d03d2cab2b.tar.gz zig-67665286575d406769000b3f3e80d4d03d2cab2b.zip | |
stage2: fix crash that could happen if `as` zir fails
Example scenario:
test {
const a: i32 = blk: {
if (false) break :blk 24;
};
_ = a;
}
Prior to this, this would panic the compiler with a source needed error.
This provides the source as `sema.src`. This is not ideal, since the
line it points to is pretty far from the true issue. (One block out)
But, this prevents the compiler from straight up crashing and follows a
pattern used by similar ZIR which don't provide a src loc.
Diffstat (limited to 'src/codegen')
0 files changed, 0 insertions, 0 deletions
