From 9ee5f403d1f434a0ea19b140ee4c33fb51f62fcd Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Thu, 9 Apr 2020 10:34:09 -0700 Subject: Fix an old misleading comment (#2738) [ci skip] --- src/wasm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/wasm.h b/src/wasm.h index f0d8f13ba..b9b06a92c 100644 --- a/src/wasm.h +++ b/src/wasm.h @@ -1257,8 +1257,8 @@ using StackIR = std::vector; class Function : public Importable { public: Name name; - Signature sig; - std::vector vars; // params plus vars + Signature sig; // parameters and return value + std::vector vars; // non-param locals // The body of the function Expression* body = nullptr; -- cgit v1.2.3