diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-08-20 15:45:53 +0200 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2025-09-26 02:02:07 +0200 |
| commit | 86077fe6bdac34fe610f4c0b6bac3d6d1b97c22d (patch) | |
| tree | d8f58b4d4e034d5770c816e886690387a1db7ffe /src/codegen/llvm.zig | |
| parent | 212715f62d3b22a2da18904f570dbc918ca8470a (diff) | |
| download | zig-86077fe6bdac34fe610f4c0b6bac3d6d1b97c22d.tar.gz zig-86077fe6bdac34fe610f4c0b6bac3d6d1b97c22d.zip | |
compiler: move self-hosted backends from src/arch to src/codegen
Diffstat (limited to 'src/codegen/llvm.zig')
| -rw-r--r-- | src/codegen/llvm.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/codegen/llvm.zig b/src/codegen/llvm.zig index fd9972d867..04c231c5ec 100644 --- a/src/codegen/llvm.zig +++ b/src/codegen/llvm.zig @@ -21,11 +21,11 @@ const Air = @import("../Air.zig"); const Value = @import("../Value.zig"); const Type = @import("../Type.zig"); const codegen = @import("../codegen.zig"); -const x86_64_abi = @import("../arch/x86_64/abi.zig"); +const x86_64_abi = @import("x86_64/abi.zig"); const wasm_c_abi = @import("wasm/abi.zig"); const aarch64_c_abi = @import("aarch64/abi.zig"); const arm_c_abi = @import("arm/abi.zig"); -const riscv_c_abi = @import("../arch/riscv64/abi.zig"); +const riscv_c_abi = @import("riscv64/abi.zig"); const mips_c_abi = @import("mips/abi.zig"); const dev = @import("../dev.zig"); |
