From 8b481ec08efa60d462897a98bec3f6761c2933d1 Mon Sep 17 00:00:00 2001 From: bd-912 Date: Fri, 3 May 2024 17:50:02 -0600 Subject: Move creating temporaries to Expression statements in BoilVisitor --- output/ex30.vapor | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'output/ex30.vapor') diff --git a/output/ex30.vapor b/output/ex30.vapor index 03c3830..9d03cd3 100644 --- a/output/ex30.vapor +++ b/output/ex30.vapor @@ -6,7 +6,9 @@ const functable_A func A_foo(this ) t.0 = 22 - ret t.0 + t.1 = t.0 + t.2 = t.1 + ret t.2 func AllocArray(size) bytes = MulS(size 4) -- cgit v1.2.3