diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-04-18 16:00:12 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-04-18 16:00:12 -0700 |
commit | f0f98a3480394495a11d73c74ea81808bea44530 (patch) | |
tree | 517e90169cd633cb2d34991296a8fde72626852b /src/passes/Print.cpp | |
parent | 0b5d70e43b4b984ed7a25cf16ee2ccece3812dbf (diff) | |
download | binaryen-f0f98a3480394495a11d73c74ea81808bea44530.tar.gz binaryen-f0f98a3480394495a11d73c74ea81808bea44530.tar.bz2 binaryen-f0f98a3480394495a11d73c74ea81808bea44530.zip |
update MemorySize => CurrentMemory
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 aa533849f..ddeec3dce 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -383,7 +383,7 @@ struct PrintSExpression : public Visitor<PrintSExpression> { void visitHost(Host *curr) { switch (curr->op) { case PageSize: printOpening(o, "pagesize") << ')'; break; - case MemorySize: printOpening(o, "memory_size") << ')'; break; + case CurrentMemory: printOpening(o, "current_memory") << ')'; break; case GrowMemory: { printOpening(o, "grow_memory"); incIndent(); |