[WIP] Remove cases for ForeachStmt and SymbolExpr

This commit is contained in:
2017-05-11 01:19:50 -04:00
parent 2e28640860
commit f65b3e6300
5 changed files with 26 additions and 6 deletions

4
stmt.h
View File

@@ -285,7 +285,7 @@ public:
void Print(int indent) const;
Stmt *TypeCheck();
Stmt *ReplacePolyType(const PolyType *from, const Type *to);
//Stmt *ReplacePolyType(const PolyType *from, const Type *to);
int EstimateCost() const;
std::vector<Symbol *> dimVariables;
@@ -294,7 +294,7 @@ public:
bool isTiled;
Stmt *stmts;
private:
ForeachStmt(ForeachStmt *base);
//ForeachStmt(ForeachStmt *base);
};