Commit 3ae04ed949

Jacob Young <jacobly0@users.noreply.github.com>
2022-11-16 07:26:09
cbe: fix identifiers colliding with the short keyword
1 parent a9c005e
Changed files (1)
src
codegen
src/codegen/c.zig
@@ -176,7 +176,7 @@ const reserved_idents = std.ComptimeStringMap(void, .{
     .{ "register", {} },
     .{ "restrict", {} },
     .{ "return", {} },
-    .{ "short ", {} },
+    .{ "short", {} },
     .{ "signed", {} },
     .{ "size_t", {} },
     .{ "sizeof", {} },