From 2a138faec4b21ee2eae89f00d1e00987bab6305a Mon Sep 17 00:00:00 2001 From: Thomas Lively <7121787+tlively@users.noreply.github.com> Date: Wed, 3 Jul 2019 15:56:04 -0700 Subject: Initial tail call implementation (#2197) Including parsing, printing, assembling, disassembling. TODO: - interpreting - effects - finalization and typing - fuzzing - JS/C API --- src/wasm.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/wasm.h') diff --git a/src/wasm.h b/src/wasm.h index 0c4576f23..3ac89b91d 100644 --- a/src/wasm.h +++ b/src/wasm.h @@ -621,6 +621,7 @@ public: ExpressionList operands; Name target; + bool isReturn = false; void finalize(); }; @@ -647,6 +648,7 @@ public: ExpressionList operands; Name fullType; Expression* target; + bool isReturn = false; void finalize(); }; -- cgit v1.2.3