From: Michael Beck Date: Tue, 1 Mar 2005 15:31:15 +0000 (+0000) Subject: scalar replacement added X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=8232963d5867b775e4251f6ba2bef69591042581;p=libfirm scalar replacement added [r5270] --- diff --git a/ir/opt/Makefile.in b/ir/opt/Makefile.in index 4a2988342..9ee10adbb 100644 --- a/ir/opt/Makefile.in +++ b/ir/opt/Makefile.in @@ -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 index 000000000..c8011d45c --- /dev/null +++ b/ir/opt/scalar_replace.c @@ -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) +{ +}