2008-09-24 Zoltan Varga <vargaz@gmail.com>
authorZoltan Varga <vargaz@gmail.com>
Wed, 24 Sep 2008 16:56:28 +0000 (16:56 -0000)
committerZoltan Varga <vargaz@gmail.com>
Wed, 24 Sep 2008 16:56:28 +0000 (16:56 -0000)
* ssapre.c: Disable this to save space since it is not yet ported to
linear IR.

* regalloc2.c: Disable this to save space.

svn path=/trunk/mono/; revision=113979

mono/mini/ChangeLog
mono/mini/regalloc2.c
mono/mini/ssapre.c

index 4775497b1acf69665de7cf85be42720082b14e90..1183fb99d0960c84172a0b215a3d32023286f675 100644 (file)
@@ -1,5 +1,10 @@
 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
 
+       * ssapre.c: Disable this to save space since it is not yet ported to
+       linear IR.
+
+       * regalloc2.c: Disable this to save space.
+
        * mini.h (MonoJitStats): Remove unused analyze_stack_repeat.
 
 Wed Sep 24 16:01:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
index 134ae0c8fc26174c3ef2a515ff7c557a9fe4d11d..866970ede3c9fcc0d56efec24a44edad8b2081ba 100644 (file)
@@ -11,6 +11,9 @@
 #include <mono/metadata/debug-helpers.h>
 #include <mono/metadata/mempool-internals.h>
 
+/* Disable for now to save space */
+#undef MONO_ARCH_ENABLE_GLOBAL_RA
+
 #ifdef MONO_ARCH_ENABLE_GLOBAL_RA
 
 /*
index ea817c58f03ec97eef1bacf09bf10ed2857df19b..dc36bfb0f763644d1895a1f4b9811c2aec49d2ed 100644 (file)
 
 #include "config.h"
 
-#ifndef DISABLE_SSA
 #include "inssel.h"
 
 #include "ssapre.h"
 
+/* Disable for now to save space since it is not yet ported to linear IR */
+#if 0
+
+#ifndef DISABLE_SSA
+
 /* Logging conditions */
 #define DUMP_LEVEL (4)
 #define TRACE_LEVEL (3)
@@ -2154,3 +2158,11 @@ mono_perform_ssapre (MonoCompile *cfg) {
 
 #endif /* DISABLE_SSA */
 
+#else /* 0 */
+
+void
+mono_perform_ssapre (MonoCompile *cfg)
+{
+}
+
+#endif /* 0 */