scalar replacement added
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Tue, 1 Mar 2005 15:31:15 +0000 (15:31 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Tue, 1 Mar 2005 15:31:15 +0000 (15:31 +0000)
[r5270]

ir/opt/Makefile.in
ir/opt/scalar_replace.c [new file with mode: 0644]

index 4a29883..9ee10ad 100644 (file)
@@ -22,7 +22,7 @@ SOURCES = $(INSTALL_HEADERS)
 
 SOURCES +=     Makefile.in \
                cfopt.c tailrec.c strength_red.c ldstopt.c reassoc.c \
-               loop_unrolling.c ifconv.c
+               loop_unrolling.c ifconv.c scalar_replace.c
 
 
 include $(topdir)/MakeRules
diff --git a/ir/opt/scalar_replace.c b/ir/opt/scalar_replace.c
new file mode 100644 (file)
index 0000000..c8011d4
--- /dev/null
@@ -0,0 +1,20 @@
+/*
+ * Project:     libFIRM
+ * File name:   ir/opt/scalar_replace.c
+ * Purpose:     scalar replacement of arrays and compounds
+ * Author:      Beyhan
+ * Created:
+ * CVS-ID:      $Id$
+ * Copyright:   (c) 1998-2005 Universität Karlsruhe
+ * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+ */
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+/*
+ * find possible scalar replacements
+ */
+void find_scalar_replacements(irgraph *irg)
+{
+}