aboutsummaryrefslogtreecommitdiff
path: root/src/arch/arm/CodeGen.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2024-09-10 17:31:06 -0400
committerGitHub <noreply@github.com>2024-09-10 17:31:06 -0400
commit8ec68c63fa1d0f7e267ff92c054e8aa335f91da4 (patch)
treee2fbdd384dbc2509c4a3b633b41e651a6e01b157 /src/arch/arm/CodeGen.zig
parent90075345519f165a0164c52b62b78453068c6ce6 (diff)
parent6aa6d088d93174767d3a8387d536f4083c39e14f (diff)
downloadzig-8ec68c63fa1d0f7e267ff92c054e8aa335f91da4.tar.gz
zig-8ec68c63fa1d0f7e267ff92c054e8aa335f91da4.zip
Merge pull request #21323 from jacobly0/dwarf-decls
Dwarf: implement more decls
Diffstat (limited to 'src/arch/arm/CodeGen.zig')
-rw-r--r--src/arch/arm/CodeGen.zig5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/arch/arm/CodeGen.zig b/src/arch/arm/CodeGen.zig
index 5d2ebf5209..a0b529b75e 100644
--- a/src/arch/arm/CodeGen.zig
+++ b/src/arch/arm/CodeGen.zig
@@ -25,7 +25,6 @@ const Alignment = InternPool.Alignment;
const Result = codegen.Result;
const CodeGenError = codegen.CodeGenError;
-const DebugInfoOutput = codegen.DebugInfoOutput;
const bits = @import("bits.zig");
const abi = @import("abi.zig");
@@ -49,7 +48,7 @@ pt: Zcu.PerThread,
air: Air,
liveness: Liveness,
bin_file: *link.File,
-debug_output: DebugInfoOutput,
+debug_output: link.File.DebugInfoOutput,
target: *const std.Target,
func_index: InternPool.Index,
err_msg: ?*ErrorMsg,
@@ -335,7 +334,7 @@ pub fn generate(
air: Air,
liveness: Liveness,
code: *std.ArrayList(u8),
- debug_output: DebugInfoOutput,
+ debug_output: link.File.DebugInfoOutput,
) CodeGenError!Result {
const zcu = pt.zcu;
const gpa = zcu.gpa;