Added spilling file
authorSebastian Hack <hack@ipd.info.uni-karlsruhe.de>
Wed, 26 Jan 2005 10:06:11 +0000 (10:06 +0000)
committerSebastian Hack <hack@ipd.info.uni-karlsruhe.de>
Wed, 26 Jan 2005 10:06:11 +0000 (10:06 +0000)
ir/be/Makefile.in
ir/be/bechordalspill.c [new file with mode: 0644]

index ab6d75a..49b2f28 100644 (file)
@@ -22,7 +22,7 @@ SOURCES = $(INSTALL_HEADERS)
 SOURCES +=     Makefile.in besched.h belistsched.h belistsched.c \
        beutil.h bemain.c besched.c bemain.c belive.c belive.h benumb.h \
        benumb_t.h benumb.c bechordal.c bera.c beutil.c phistat.c \
-       bephiopt.c bephicoal.c bera.h
+       bephiopt.c bephicoal.c bera.h bechordalspill.c
 
 include $(topdir)/MakeRules
 
diff --git a/ir/be/bechordalspill.c b/ir/be/bechordalspill.c
new file mode 100644 (file)
index 0000000..2166676
--- /dev/null
@@ -0,0 +1,33 @@
+/**
+ * Spilling for chordal interference graphs.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include "obst.h"
+#include "list.h"
+#include "bitset.h"
+#include "iterator.h"
+
+#include "irmode_t.h"
+#include "irgraph_t.h"
+#include "irprintf_t.h"
+#include "irgwalk.h"
+#include "irdump.h"
+#include "irdom.h"
+#include "debug.h"
+#include "xmalloc.h"
+
+#include "beutil.h"
+#include "besched.h"
+#include "bera_t.h"
+#include "benumb_t.h"
+#include "besched_t.h"
+#include "belive_t.h"
+#include "bechordal_t.h"
+
+void be_ra_chordal_spill(ir_graph *irg)
+{
+}