Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dleiferives committed May 15, 2024
1 parent 479d483 commit 0d9bae0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/ir/stack/ir.zig
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

pub const std = @import("std");

const Ast = @import("../ast.zig");
const utils = @import("../utils.zig");
const log = @import("../log.zig");
const Ast = @import("../../ast.zig");
const utils = @import("../../utils.zig");
const log = @import("../../log.zig");

pub const InternPool = @import("../intern-pool.zig");
/// The ID of a string stored in the intern pool
Expand Down
6 changes: 3 additions & 3 deletions src/ir/stack/stack.zig
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ const std = @import("std");
const IR = @import("ir.zig");
const Inst = IR.Inst;

const Ast = @import("../ast.zig");
const log = @import("../log.zig");
const utils = @import("../utils.zig");
const Ast = @import("../../ast.zig");
const log = @import("../../log.zig");
const utils = @import("../../utils.zig");

pub const StackGen = @This();
const Ctx = StackGen;
Expand Down

0 comments on commit 0d9bae0

Please sign in to comment.