BitcodeReader: followup cleanup

This commit is contained in:
Jacob Young
2023-11-10 22:35:02 -05:00
parent d93f1f3c72
commit ae8992629c

View File

@@ -51,8 +51,8 @@ pub const Block = struct {
pub const Record = struct {
name: []const u8,
id: u32,
operands: []u64,
blob: []u8,
operands: []const u64,
blob: []const u8,
fn toOwnedAbbrev(record: Record, allocator: std.mem.Allocator) !Abbrev {
var operands = std.ArrayList(Abbrev.Operand).init(allocator);