diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-26 14:57:54 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-26 14:57:54 +0000 |
commit | 7bd935cdb41444ec4a53152aa230fc0262b63300 (patch) | |
tree | d7287d5062e65d84edb3ab01ede335336b8b4c3b /gcc/gimple-ssa-strength-reduction.c | |
parent | 41e69d7b0792fd347b35d4dce100655d1f1b0fbe (diff) | |
download | gcc-7bd935cdb41444ec4a53152aa230fc0262b63300.tar.gz |
[./]
2013-11-26 Basile Starynkevitch <basile@starynkevitch.net>
{{merge using svnmerge.py with trunk GCC 4.9 svn rev 205391 now in
stage 3; very unstable}}
[gcc/]
2013-11-26 Basile Starynkevitch <basile@starynkevitch.net>
{{unstable, xtramelt-ana-base.melt is not translatable. Merge with
trunk svn rev 205391}}
* melt-run.proto.h: Move MELT_GCC_VERSION #definition above.
Include basic-block.h, tree-ssa-alias.h, internal-fn.h,
gimple-expr.h, is-a.h for GCC 4.9...
* melt-runtime.cc: Include basic-block.h, tree-ssa-alias.h, internal-fn.h,
gimple-expr.h, is-a.h, pointer-set.h for GCC 4.9...
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@205393 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gimple-ssa-strength-reduction.c')
-rw-r--r-- | gcc/gimple-ssa-strength-reduction.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gcc/gimple-ssa-strength-reduction.c b/gcc/gimple-ssa-strength-reduction.c index 3ac9e4d3347..bc2484b5b13 100644 --- a/gcc/gimple-ssa-strength-reduction.c +++ b/gcc/gimple-ssa-strength-reduction.c @@ -37,12 +37,18 @@ along with GCC; see the file COPYING3. If not see #include "system.h" #include "coretypes.h" #include "tree.h" +#include "pointer-set.h" +#include "hash-table.h" +#include "basic-block.h" +#include "tree-ssa-alias.h" +#include "internal-fn.h" +#include "gimple-expr.h" +#include "is-a.h" #include "gimple.h" #include "gimple-iterator.h" #include "gimplify-me.h" #include "stor-layout.h" #include "expr.h" -#include "basic-block.h" #include "tree-pass.h" #include "cfgloop.h" #include "gimple-pretty-print.h" @@ -53,10 +59,8 @@ along with GCC; see the file COPYING3. If not see #include "stringpool.h" #include "tree-ssanames.h" #include "domwalk.h" -#include "pointer-set.h" #include "expmed.h" #include "params.h" -#include "hash-table.h" #include "tree-ssa-address.h" /* Information about a strength reduction candidate. Each statement |