stage2: use %type not @type for libc stubs

Missed a couple places last time so just doing the rest.
This commit is contained in:
Julian Maingot
2021-01-16 17:33:37 -08:00
committed by Andrew Kelley
parent 4c5f69a065
commit 384ccaa27a
2 changed files with 34 additions and 34 deletions

View File

@@ -93,7 +93,7 @@ pub fn main() !void {
}
switch (symbol.type) {
.function => try stdout.print(".type {s}, %function;\n", .{symbol.name}),
.object => try stdout.print(".type {s}, @object;\n", .{symbol.name}),
.object => try stdout.print(".type {s}, %object;\n", .{symbol.name}),
.none => {},
}
if (symbol.protected)