Commit 0e697399 by Andrew Pinski Committed by Andrew Pinski

re PR fortran/29410 ([4.2 only] bug with TRANSFER() and -O2)

2006-10-30  Andrew Pinski  <pinskia@gmail.com>

        PR fortran/29410
        * trans-intrinsic.c (gfc_conv_intrinsic_array_transfer):
        Change over to create VIEW_CONVERT_EXPR instead of using an
        ADDR_EXPR, a cast and then an indirect reference
2006-10-30  Andrew Pinski  <pinskia@gmail.com>

        PR Fortran/29410
        * gfortran.fortran-torture/execute/transfer1.f90: New test.

From-SVN: r118186
parent ff84991f
2006-10-30 Andrew Pinski <pinskia@gmail.com>
PR fortran/29410
* trans-intrinsic.c (gfc_conv_intrinsic_array_transfer):
Change over to create VIEW_CONVERT_EXPR instead of using an
ADDR_EXPR, a cast and then an indirect reference
2006-10-29 Francois-Xavier Coudert <coudert@clipper.ens.fr> 2006-10-29 Francois-Xavier Coudert <coudert@clipper.ens.fr>
* trans-intrinsic.c (gfc_conv_intrinsic_loc): Make LOC return a * trans-intrinsic.c (gfc_conv_intrinsic_loc): Make LOC return a
......
...@@ -2914,7 +2914,7 @@ gfc_conv_intrinsic_array_transfer (gfc_se * se, gfc_expr * expr) ...@@ -2914,7 +2914,7 @@ gfc_conv_intrinsic_array_transfer (gfc_se * se, gfc_expr * expr)
/* Scalar transfer statement. /* Scalar transfer statement.
TRANSFER (source, mold) = *(typeof<mold> *)&source. */ TRANSFER (source, mold) = VIEW_CONVERT_EXPR<typeof<mold> >source. */
static void static void
gfc_conv_intrinsic_transfer (gfc_se * se, gfc_expr * expr) gfc_conv_intrinsic_transfer (gfc_se * se, gfc_expr * expr)
...@@ -2939,9 +2939,9 @@ gfc_conv_intrinsic_transfer (gfc_se * se, gfc_expr * expr) ...@@ -2939,9 +2939,9 @@ gfc_conv_intrinsic_transfer (gfc_se * se, gfc_expr * expr)
arg = arg->next; arg = arg->next;
type = gfc_typenode_for_spec (&expr->ts); type = gfc_typenode_for_spec (&expr->ts);
ptr = convert (build_pointer_type (type), ptr);
if (expr->ts.type == BT_CHARACTER) if (expr->ts.type == BT_CHARACTER)
{ {
ptr = convert (build_pointer_type (type), ptr);
gfc_init_se (&argse, NULL); gfc_init_se (&argse, NULL);
gfc_conv_expr (&argse, arg->expr); gfc_conv_expr (&argse, arg->expr);
gfc_add_block_to_block (&se->pre, &argse.pre); gfc_add_block_to_block (&se->pre, &argse.pre);
...@@ -2951,7 +2951,8 @@ gfc_conv_intrinsic_transfer (gfc_se * se, gfc_expr * expr) ...@@ -2951,7 +2951,8 @@ gfc_conv_intrinsic_transfer (gfc_se * se, gfc_expr * expr)
} }
else else
{ {
se->expr = build_fold_indirect_ref (ptr); tree tmp = build_fold_indirect_ref (ptr);
se->expr = fold_build1 (VIEW_CONVERT_EXPR, type, tmp);
} }
} }
......
2006-10-30 Andrew Pinski <pinskia@gmail.com>
PR Fortran/29410
* gfortran.fortran-torture/execute/transfer1.f90: New test.
2006-10-30 Joseph Myers <joseph@codesourcery.com> 2006-10-30 Joseph Myers <joseph@codesourcery.com>
* lib/target-supports.exp (check_function_available): Declare * lib/target-supports.exp (check_function_available): Declare
program chop
integer ix, iy
real x, y
x = 1.
y = x
ix = transfer(x,ix)
iy = transfer(y,iy)
print '(2z20.8)', ix, iy
if (ix /= iy) call abort
end program chop
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment