comparison gen/irstate.c @ 4:e116aa1488e6 trunk

[svn r8] changed backend includes to always use the gen/<foo>.h prefix fixed passing string literals as array parameters few other fixes moved some array routines into gen/arrays
author lindquist
date Mon, 03 Sep 2007 17:34:30 +0200
parents c53b6e3fe49a
children 35d93ce68cf4
comparison
equal deleted inserted replaced
3:069cf4b0ec67 4:e116aa1488e6
2 * This file contains the implementations of the backend routines. 2 * This file contains the implementations of the backend routines.
3 * For dmdfe these do nothing but print a message saying the module 3 * For dmdfe these do nothing but print a message saying the module
4 * has been parsed. Substitute your own behaviors for these routimes. 4 * has been parsed. Substitute your own behaviors for these routimes.
5 */ 5 */
6 6
7 #include "irstate.h"
8
9 #include "mtype.h" 7 #include "mtype.h"
8 #include "gen/irstate.h"
10 9
11 IRState* gIR = 0; 10 IRState* gIR = 0;
12 llvm::TargetData* gTargetData = 0; 11 llvm::TargetData* gTargetData = 0;
13 12
14 ////////////////////////////////////////////////////////////////////////////////////////// 13 //////////////////////////////////////////////////////////////////////////////////////////