diff options
Diffstat (limited to 'src/printer/dump.cpp')
-rw-r--r-- | src/printer/dump.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/printer/dump.cpp b/src/printer/dump.cpp index a88f472..c7abc63 100644 --- a/src/printer/dump.cpp +++ b/src/printer/dump.cpp @@ -125,10 +125,10 @@ void Dump::printS(std::string ident, chillAST_FloatingLiteral *n, std::ostream & } void Dump::printS(std::string ident, chillAST_ForStmt *n, std::ostream &o) { - print(ident, n->init, o); - print(ident, n->cond, o); - print(ident, n->incr, o); - print(ident, n->body, o); + print(ident, n->getInit(), o); + print(ident, n->getCond(), o); + print(ident, n->getInc(), o); + print(ident, n->getBody(), o); } void Dump::printS(std::string ident, chillAST_Free *n, std::ostream &o) {} |