diff options
Diffstat (limited to 'gcc/fortran')
-rw-r--r-- | gcc/fortran/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/fortran/Make-lang.in | 2 | ||||
-rw-r--r-- | gcc/fortran/f95-lang.c | 2 | ||||
-rw-r--r-- | gcc/fortran/trans-array.c | 2 | ||||
-rw-r--r-- | gcc/fortran/trans-decl.c | 2 | ||||
-rw-r--r-- | gcc/fortran/trans-expr.c | 6 | ||||
-rw-r--r-- | gcc/fortran/trans-intrinsic.c | 2 | ||||
-rw-r--r-- | gcc/fortran/trans-io.c | 2 | ||||
-rw-r--r-- | gcc/fortran/trans-stmt.c | 2 | ||||
-rw-r--r-- | gcc/fortran/trans.c | 4 |
10 files changed, 18 insertions, 12 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 8939fc4..d818535 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,9 @@ +2004-05-13 Diego Novillo <dnovillo@redhat.com> + + * Make-lang.in, f95-lang.c, trans-array.c, trans-decl.c, + trans-expr.c, trans-intrinsic.c, trans-io.c, trans-stmt.c, + trans.c: Rename tree-simple.[ch] to tree-gimple.[ch]. + 2004-05-13 Victor Leikehman <lei@haifasphere.co.il> PR fortran/15314 diff --git a/gcc/fortran/Make-lang.in b/gcc/fortran/Make-lang.in index a38834b..f1acba8 100644 --- a/gcc/fortran/Make-lang.in +++ b/gcc/fortran/Make-lang.in @@ -81,7 +81,7 @@ F95_OBJS = $(F95_PARSER_OBJS) \ # We rely on c-semantics to expand from GIMPLE to RTL. # This should go away once a real GIMPLE expander is available. F95_ADDITIONAL_OBJS = \ - tree-cfg.o tree-dfa.o tree-optimize.o tree-simple.o \ + tree-cfg.o tree-dfa.o tree-optimize.o tree-gimple.o \ tree-ssa.o tree-ssa-ccp.o tree-ssa-dce.o \ tree-alias-common.o tree-alias-type.o gimplify.o stor-layout.o diff --git a/gcc/fortran/f95-lang.c b/gcc/fortran/f95-lang.c index 51ce3c4..f5cc66e 100644 --- a/gcc/fortran/f95-lang.c +++ b/gcc/fortran/f95-lang.c @@ -28,7 +28,7 @@ Boston, MA 02111-1307, USA. */ #include "system.h" #include "coretypes.h" #include "tree.h" -#include "tree-simple.h" +#include "tree-gimple.h" #include "flags.h" #include "langhooks.h" #include "langhooks-def.h" diff --git a/gcc/fortran/trans-array.c b/gcc/fortran/trans-array.c index 452b0fe..2d95550 100644 --- a/gcc/fortran/trans-array.c +++ b/gcc/fortran/trans-array.c @@ -80,7 +80,7 @@ Boston, MA 02111-1307, USA. */ #include "system.h" #include "coretypes.h" #include "tree.h" -#include "tree-simple.h" +#include "tree-gimple.h" #include <stdio.h> #include "ggc.h" #include "toplev.h" diff --git a/gcc/fortran/trans-decl.c b/gcc/fortran/trans-decl.c index 79e8cf6..c1e8050 100644 --- a/gcc/fortran/trans-decl.c +++ b/gcc/fortran/trans-decl.c @@ -26,7 +26,7 @@ Boston, MA 02111-1307, USA. */ #include "coretypes.h" #include "tree.h" #include "tree-dump.h" -#include "tree-simple.h" +#include "tree-gimple.h" #include "ggc.h" #include "toplev.h" #include "tm.h" diff --git a/gcc/fortran/trans-expr.c b/gcc/fortran/trans-expr.c index 1f98f9e..b0f4139 100644 --- a/gcc/fortran/trans-expr.c +++ b/gcc/fortran/trans-expr.c @@ -31,7 +31,7 @@ Boston, MA 02111-1307, USA. */ #include "ggc.h" #include "toplev.h" #include "real.h" -#include "tree-simple.h" +#include "tree-gimple.h" #include "flags.h" #include <gmp.h> #include <assert.h> @@ -374,7 +374,7 @@ gfc_conv_unary_op (enum tree_code code, gfc_se * se, gfc_expr * expr) /* TRUTH_NOT_EXPR is not a "true" unary operator in GCC. We must convert it to a compare to 0 (e.g. EQ_EXPR (op1, 0)). - All other unary operators have an equivalent SIMPLE unary operator */ + All other unary operators have an equivalent GIMPLE unary operator */ if (code == TRUTH_NOT_EXPR) se->expr = build (EQ_EXPR, type, operand.expr, integer_zero_node); else @@ -796,7 +796,7 @@ gfc_conv_expr_op (gfc_se * se, gfc_expr * expr) break; /* EQV and NEQV only work on logicals, but since we represent them - as integers, we can use EQ_EXPR and NE_EXPR for them in SIMPLE. */ + as integers, we can use EQ_EXPR and NE_EXPR for them in GIMPLE. */ case INTRINSIC_EQ: case INTRINSIC_EQV: code = EQ_EXPR; diff --git a/gcc/fortran/trans-intrinsic.c b/gcc/fortran/trans-intrinsic.c index fb3ceb2..b58c298 100644 --- a/gcc/fortran/trans-intrinsic.c +++ b/gcc/fortran/trans-intrinsic.c @@ -31,7 +31,7 @@ Boston, MA 02111-1307, USA. */ #include "ggc.h" #include "toplev.h" #include "real.h" -#include "tree-simple.h" +#include "tree-gimple.h" #include "flags.h" #include <gmp.h> #include <assert.h> diff --git a/gcc/fortran/trans-io.c b/gcc/fortran/trans-io.c index d18bb79..66fffab 100644 --- a/gcc/fortran/trans-io.c +++ b/gcc/fortran/trans-io.c @@ -24,7 +24,7 @@ Boston, MA 02111-1307, USA. */ #include "system.h" #include "coretypes.h" #include "tree.h" -#include "tree-simple.h" +#include "tree-gimple.h" #include <stdio.h> #include "ggc.h" #include "toplev.h" diff --git a/gcc/fortran/trans-stmt.c b/gcc/fortran/trans-stmt.c index 0de62a5..6c2e669 100644 --- a/gcc/fortran/trans-stmt.c +++ b/gcc/fortran/trans-stmt.c @@ -25,7 +25,7 @@ Boston, MA 02111-1307, USA. */ #include "system.h" #include "coretypes.h" #include "tree.h" -#include "tree-simple.h" +#include "tree-gimple.h" #include <stdio.h> #include "ggc.h" #include "toplev.h" diff --git a/gcc/fortran/trans.c b/gcc/fortran/trans.c index aed764d..a423ac9 100644 --- a/gcc/fortran/trans.c +++ b/gcc/fortran/trans.c @@ -23,7 +23,7 @@ Boston, MA 02111-1307, USA. */ #include "system.h" #include "coretypes.h" #include "tree.h" -#include "tree-simple.h" +#include "tree-gimple.h" #include <stdio.h> #include "ggc.h" #include "toplev.h" @@ -443,7 +443,7 @@ gfc_trans_code (gfc_code * code) gfc_start_block (&block); - /* Translate statements one by one to SIMPLE trees until we reach + /* Translate statements one by one to GIMPLE trees until we reach the end of this gfc_code branch. */ for (; code; code = code->next) { |