From 62e9f5d881e2d7e7f9f5da845ed2dbc176bc0bc5 Mon Sep 17 00:00:00 2001 From: jgravelle-google Date: Fri, 10 Mar 2017 13:10:17 -0800 Subject: Wasm h to cpp (#926) * Move WasmType function implementations to wasm.cpp * Move Literal methods to wasm.cpp * Reorder wasm.cpp shared constants back to top * Move expression functions to wasm.cpp * Finish moving things to wasm.cpp * Split out Literal into its own .h/.cpp. Also factor out common wasm-type module * Remove unneeded/transitive includes from wasm.h * Add comment to try/check methods * Rename tryX/checkX methods to getXOrNull * Add missing include that should fix appveyor build breakage * More appveyor --- src/passes/Print.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/passes/Print.cpp') diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index c46a0621d..04bf74529 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -21,6 +21,7 @@ #include #include #include +#include namespace wasm { @@ -90,7 +91,7 @@ struct PrintSExpression : public Visitor { Name printableLocal(Index index) { Name name; if (currFunction) { - name = currFunction->tryLocalName(index); + name = currFunction->getLocalNameOrDefault(index); } if (!name.is()) { name = Name::fromInt(index); -- cgit v1.2.3