/* emit.c statement emittion Copyright (C) 2001 Bill Currie Author: Bill Currie Date: 2001/07/26 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to: Free Software Foundation, Inc. 59 Temple Place - Suite 330 Boston, MA 02111-1307, USA */ #ifdef HAVE_CONFIG_H # include "config.h" #endif static __attribute__ ((used)) const char rcsid[] = "$Id$"; #ifdef HAVE_STRING_H # include #endif #ifdef HAVE_STRINGS_H # include #endif #include #include #include #include "codespace.h" #include "def.h" #include "debug.h" #include "emit.h" #include "expr.h" #include "function.h" #include "immediate.h" #include "opcodes.h" #include "options.h" #include "qfcc.h" #include "reloc.h" #include "symtab.h" #include "type.h" #include "qc-parse.h" def_t * emit_statement (expr_t *e, opcode_t *op, def_t *var_a, def_t *var_b, def_t *var_c) { return 0; } def_t * emit_sub_expr (expr_t *e, def_t *dest) { return 0; } void emit_expr (expr_t *e) { }