AIR: eliminate the values array

This commit is contained in:
Andrew Kelley
2023-05-25 23:04:15 -07:00
parent 9afa974183
commit 66c4396854
13 changed files with 44 additions and 62 deletions

View File

@@ -5720,7 +5720,6 @@ pub fn analyzeFnBody(mod: *Module, func_index: Fn.Index, arena: Allocator) SemaE
return Air{
.instructions = sema.air_instructions.toOwnedSlice(),
.extra = try sema.air_extra.toOwnedSlice(gpa),
.values = try sema.air_values.toOwnedSlice(gpa),
};
}