From 41c9834662fdccfc8ae8abde2d279a70ff17c597 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 8 Dec 2010 20:36:16 +0000 Subject: Remove Engine::compileIf git-svn-id: http://svn.drobilla.net/resp/resp@316 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- src/c.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/c.cpp') diff --git a/src/c.cpp b/src/c.cpp index 4e71eae..afe1132 100644 --- a/src/c.cpp +++ b/src/c.cpp @@ -164,6 +164,10 @@ struct CEngine : public Engine { CVal compileGlobal(CEnv& cenv, const AType* type, const string& sym, CVal val); CVal compileGlobalGet(CEnv& cenv, const string& sym, CVal val); + IfState compileIfStart(CEnv& cenv) { return NULL; } + void compileIfBranch(CEnv& cenv, IfState state, CVal condV, const AST* then) {} + CVal compileIfEnd(CEnv& cenv, IfState state, CVal elseV, const AType* type) { return NULL; } + void writeModule(CEnv& cenv, std::ostream& os) { os << out; } -- cgit v1.2.1