diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-09-16 11:18:04 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-09-16 15:14:04 -0700 |
commit | 444d7f66182c091b2e207a7bc842309f0925e228 (patch) | |
tree | 327f4d437e3f3b2fd97462e13f3e79ea74616d4f /src/passes/Print.cpp | |
parent | 7292ef9c863a0766c697cc0a77516447ff652820 (diff) | |
download | binaryen-444d7f66182c091b2e207a7bc842309f0925e228.tar.gz binaryen-444d7f66182c091b2e207a7bc842309f0925e228.tar.bz2 binaryen-444d7f66182c091b2e207a7bc842309f0925e228.zip |
call_import changes: no more call_import, shared index space with functions
Diffstat (limited to 'src/passes/Print.cpp')
-rw-r--r-- | src/passes/Print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index 43ddc954c..e0fab9901 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -224,7 +224,7 @@ struct PrintSExpression : public Visitor<PrintSExpression> { printCallBody(curr); } void visitCallImport(CallImport *curr) { - printOpening(o, "call_import "); + printOpening(o, "call "); printCallBody(curr); } void visitCallIndirect(CallIndirect *curr) { |