authorgravatar for koachan@protonmail.comKoakuma <koachan@protonmail.com> 2022-03-19 06:58:50+07:00
committergravatar for koachan@protonmail.comKoakuma <koachan@protonmail.com> 2022-03-19 06:58:50+07:00
log59680b40a123472428db75410ec6d9c375313b45
tree470fc6ae0b42f3987b05019d2b40cf1fa069b968
parent93b16de4b4dc25a9e2fe076a5a992a85afc51ade

stage2 sparcv9: Fix unused parameter errors in Codegen


1 files changed, 8 insertions(+), 0 deletions(-)

src/arch/sparcv9/CodeGen.zig+8
......@@ -27,5 +27,13 @@ pub fn generate(
2727 code: *std.ArrayList(u8),
2828 debug_output: DebugInfoOutput,
2929) GenerateSymbolError!FnResult {
30 _ = bin_file;
31 _ = src_loc;
32 _ = module_fn;
33 _ = air;
34 _ = liveness;
35 _ = code;
36 _ = debug_output;
37
3038 @panic("TODO implement SPARCv9 codegen");
3139}