diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-09-13 19:56:35 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-09-13 19:56:35 -0700 |
| commit | 2456df5f4ebf9fef147d86736974e95403e2d40d (patch) | |
| tree | f7d849a71434dceed2327e4b23a9592192e74ab8 /src-self-hosted/codegen/wasm.zig | |
| parent | 4d59f775289b50a9529e801a6998dcd181945efb (diff) | |
| download | zig-2456df5f4ebf9fef147d86736974e95403e2d40d.tar.gz zig-2456df5f4ebf9fef147d86736974e95403e2d40d.zip | |
stage2: rename ZigModule to Module
Diffstat (limited to 'src-self-hosted/codegen/wasm.zig')
| -rw-r--r-- | src-self-hosted/codegen/wasm.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-self-hosted/codegen/wasm.zig b/src-self-hosted/codegen/wasm.zig index 5f44aa8c65..4ea8838409 100644 --- a/src-self-hosted/codegen/wasm.zig +++ b/src-self-hosted/codegen/wasm.zig @@ -5,7 +5,7 @@ const assert = std.debug.assert; const leb = std.debug.leb; const mem = std.mem; -const Module = @import("../ZigModule.zig"); +const Module = @import("../Module.zig"); const Decl = Module.Decl; const Inst = @import("../ir.zig").Inst; const Type = @import("../type.zig").Type; |
