diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-01-17 01:20:11 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-17 01:20:11 -0500 |
| commit | 4bace0f6212a3007247c42b0effcc40c6cfe61a8 (patch) | |
| tree | a5c1fee87a9266319d8ceffa7717ca5c70b61f7b /src/Compilation.zig | |
| parent | 257054a1467b2612725bd66852d84496024cf66c (diff) | |
| parent | 8c8dfb35f398407319764f0f8998de34c5247ed6 (diff) | |
| download | zig-4bace0f6212a3007247c42b0effcc40c6cfe61a8.tar.gz zig-4bace0f6212a3007247c42b0effcc40c6cfe61a8.zip | |
Merge pull request #22386 from jacobly0/x86_64-rewrite
x86_64: begin rewriting instruction selection
Diffstat (limited to 'src/Compilation.zig')
| -rw-r--r-- | src/Compilation.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig index 77596e34ec..1260bc028f 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -3067,6 +3067,7 @@ pub fn saveState(comp: *Compilation) !void { // linker state switch (lf.tag) { .wasm => { + dev.check(link.File.Tag.wasm.devFeature()); const wasm = lf.cast(.wasm).?; const is_obj = comp.config.output_mode == .Obj; try bufs.ensureUnusedCapacity(85); |
