Skip to content

Commit

Permalink
v3
Browse files Browse the repository at this point in the history
  • Loading branch information
YonahGoldberg committed Oct 2, 2024
1 parent 766748d commit 598f510
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions aeneas/src/v3/V3.v3
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,14 @@ component V3 {
return buf;
}
match (val) {
x: Box<u1> => buf.putd(x.val);
x: Box<u2> => buf.putd(x.val);
x: Box<u3> => buf.putd(x.val);
x: Box<u4> => buf.putd(x.val);
x: Box<u5> => buf.putd(x.val);
x: Box<u6> => buf.putd(x.val);
x: Box<i12> => buf.putd(x.val);
x: Box<short> => buf.putd(x.val);
x: Box<int> => buf.putd(x.val);
x: Box<long> => buf.putd(x.val).putc('L');
x: Box<bool> => buf.putz(x.val);
Expand Down

0 comments on commit 598f510

Please sign in to comment.