This file contains the codegen routines responsible for the synthesization of assignment statements. More...
#include "CodeGenRoutine.h"
#include "comma/ast/Expr.h"
#include "comma/ast/Stmt.h"
Go to the source code of this file.
Defines | |
#define | DISPATCH(KIND, LHS, RHS) |
This file contains the codegen routines responsible for the synthesization of assignment statements.
Definition in file CodeGenAssign.cpp.
#define DISPATCH | ( | KIND, | |||
LHS, | |||||
RHS | ) |
Ast::AST_ ## KIND: \
emitAssignment(cast<KIND>(LHS), RHS); \
break