diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-04-26 20:06:40 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-04-26 20:06:40 -0700 |
commit | 206338a6c4e3f9739abd7a2ad082d1770b3a628f (patch) | |
tree | 817992a1e811af71087a228b20f3c35df9485b96 /src/passes/Print.cpp | |
parent | dd778824cfc60c4478bbe7690769f444dad92803 (diff) | |
parent | d9096704dfa84aea94bb6ac2ffa02d88fa546bfa (diff) | |
download | binaryen-206338a6c4e3f9739abd7a2ad082d1770b3a628f.tar.gz binaryen-206338a6c4e3f9739abd7a2ad082d1770b3a628f.tar.bz2 binaryen-206338a6c4e3f9739abd7a2ad082d1770b3a628f.zip |
Prep for arena vectors
Arena vectors
Diffstat (limited to 'src/passes/Print.cpp')
-rw-r--r-- | src/passes/Print.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index bb89b2720..eb0a6d33b 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -186,7 +186,8 @@ struct PrintSExpression : public Visitor<PrintSExpression> { decIndent(); } - void printCallBody(Call* curr) { + template<typename CallBase> + void printCallBody(CallBase* curr) { o << curr->target; if (curr->operands.size() > 0) { incIndent(); |