mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 08:00:26 +08:00
trans-expr.c (gfc_conv_cst_int_power): Compute x**(-n) by converting it to (1/x)**n instead of 1/x**n.
2004-06-09 Toon Moene <toon@moene.indiv.nluug.nl> * trans-expr.c (gfc_conv_cst_int_power): Compute x**(-n) by converting it to (1/x)**n instead of 1/x**n. From-SVN: r82850
This commit is contained in:
parent
dc88d66f1a
commit
293155b099
@ -1,3 +1,9 @@
|
||||
2004-06-09 Toon Moene <toon@moene.indiv.nluug.nl>
|
||||
|
||||
* trans-expr.c (gfc_conv_cst_int_power): Compute
|
||||
x**(-n) by converting it to (1/x)**n instead of
|
||||
1/x**n.
|
||||
|
||||
2004-06-09 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
|
||||
|
||||
PR fortran/13372
|
||||
|
@ -526,13 +526,14 @@ gfc_conv_cst_int_power (gfc_se * se, tree lhs, tree rhs)
|
||||
|
||||
memset (vartmp, 0, sizeof (vartmp));
|
||||
vartmp[1] = lhs;
|
||||
|
||||
se->expr = gfc_conv_powi (se, n, vartmp);
|
||||
if (sgn == -1)
|
||||
{
|
||||
tmp = gfc_build_const (type, integer_one_node);
|
||||
se->expr = build (RDIV_EXPR, type, tmp, se->expr);
|
||||
vartmp[1] = build (RDIV_EXPR, type, tmp, vartmp[1]);
|
||||
}
|
||||
|
||||
se->expr = gfc_conv_powi (se, n, vartmp);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user