summaryrefslogtreecommitdiff
path: root/src/printer/cfamily.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/printer/cfamily.cpp')
-rw-r--r--src/printer/cfamily.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/printer/cfamily.cpp b/src/printer/cfamily.cpp
index d0f8030..552947a 100644
--- a/src/printer/cfamily.cpp
+++ b/src/printer/cfamily.cpp
@@ -180,9 +180,9 @@ void CFamily::printS(std::string ident, chillAST_ForStmt *n, std::ostream &o) {
o << "// " << n->metacomment << "\n";
o << "for (";
print(ident, n->getInit(), o);
- o << ";";
+ o << "; ";
print(ident, n->getCond(), o);
- o << ";";
+ o << "; ";
print(ident, n->getInc(), o);
o << ") ";
if (n->getBody()->isCompoundStmt()) {
@@ -232,6 +232,9 @@ void CFamily::printS(std::string ident, chillAST_IfStmt *n, std::ostream &o) {
if (!(n->getThen()->isCompoundStmt()))
CHILL_ERROR("Then part is not a CompoundStmt!\n");
if (n->getElse()) {
+ if (n->getThen()->getNumChildren() == 1)
+ o<<std::endl<<ident;
+ else o<<" ";
o << "else ";
print(ident, n->getElse(), o);
}