diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-03-06 01:29:56 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-06 01:29:56 -0500 |
| commit | ac1b0e832b4b9d151098050e1d29e28a568e215c (patch) | |
| tree | 755f438b1bb25a03f10469e5b87c30718aa17eed /src/Module.zig | |
| parent | 2641feb9b98e794608917231c2fa775ea4daea06 (diff) | |
| parent | 8558983c865b6d7ec8a692bd1027443109058cf6 (diff) | |
| download | zig-ac1b0e832b4b9d151098050e1d29e28a568e215c.tar.gz zig-ac1b0e832b4b9d151098050e1d29e28a568e215c.zip | |
Merge pull request #14799 from ziglang/update-zig1
`@trap` fixups
Diffstat (limited to 'src/Module.zig')
| -rw-r--r-- | src/Module.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Module.zig b/src/Module.zig index a2502d36d3..7ea69a0a2e 100644 --- a/src/Module.zig +++ b/src/Module.zig @@ -3528,6 +3528,7 @@ pub fn astGenFile(mod: *Module, file: *File) !void { const digest = hash: { var path_hash: Cache.HashHelper = .{}; path_hash.addBytes(build_options.version); + path_hash.add(builtin.zig_backend); if (!want_local_cache) { path_hash.addOptionalBytes(file.pkg.root_src_directory.path); } |
