aboutsummaryrefslogtreecommitdiff
path: root/src/codegen/c.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-03-18 22:48:28 -0700
committerAndrew Kelley <andrew@ziglang.org>2021-03-18 22:48:28 -0700
commitbd2154da3d90daa4520ee7ef69dac42f9049ed92 (patch)
tree2b541e218121779de830b7d372975c790b469014 /src/codegen/c.zig
parentb2682237dbe90306b569cb36914f8823cd7b0431 (diff)
downloadzig-bd2154da3d90daa4520ee7ef69dac42f9049ed92.tar.gz
zig-bd2154da3d90daa4520ee7ef69dac42f9049ed92.zip
stage2: the code is compiling again
(with a lot of things commented out)
Diffstat (limited to 'src/codegen/c.zig')
-rw-r--r--src/codegen/c.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/c.zig b/src/codegen/c.zig
index dc5c29716b..02d44f53c3 100644
--- a/src/codegen/c.zig
+++ b/src/codegen/c.zig
@@ -760,7 +760,7 @@ fn genCall(o: *Object, inst: *Inst.Call) !CValue {
}
}
-fn genDbgStmt(o: *Object, inst: *Inst.NoOp) !CValue {
+fn genDbgStmt(o: *Object, inst: *Inst.DbgStmt) !CValue {
// TODO emit #line directive here with line number and filename
return CValue.none;
}