frontend: skip astgen for builtin.zig

since it's already done ahead of time and always unchanging
This commit is contained in:
Andrew Kelley
2023-12-24 21:51:11 -07:00
parent 4f8a44cd0f
commit 98dd4f7847
2 changed files with 5 additions and 4 deletions

View File

@@ -2637,6 +2637,8 @@ comptime {
}
pub fn astGenFile(mod: *Module, file: *File) !void {
assert(!file.mod.isBuiltin());
const tracy = trace(@src());
defer tracy.end();