trans-intrinsic.c (gfc_get_intrinsic_lib_fndecl, [...]): Remove trailing whitespace.
* trans-intrinsic.c (gfc_get_intrinsic_lib_fndecl, gfc_conv_intrinsic_bound, gfc_conv_intrinsic_minmaxloc, gfc_conv_intrinsic_ishft, gfc_conv_intrinsic_len): Remove trailing whitespace. (prepare_arg_info): Fix formatting, indenting and remove trailing whitespace. (gfc_conv_intrinsic_spacing, gfc_conv_intrinsic_trim): Remove trailing whitespace. From-SVN: r93092
This commit is contained in:
parent
92574caf72
commit
b36cd00b1e
@ -2,6 +2,15 @@
|
||||
|
||||
* trans-const.c: Don't include unused math.h.
|
||||
|
||||
* trans-intrinsic.c (gfc_get_intrinsic_lib_fndecl,
|
||||
gfc_conv_intrinsic_bound, gfc_conv_intrinsic_minmaxloc,
|
||||
gfc_conv_intrinsic_ishft, gfc_conv_intrinsic_len): Remove
|
||||
trailing whitespace.
|
||||
(prepare_arg_info): Fix formatting, indenting and remove trailing
|
||||
whitespace.
|
||||
(gfc_conv_intrinsic_spacing, gfc_conv_intrinsic_trim): Remove
|
||||
trailing whitespace.
|
||||
|
||||
2005-01-08 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
|
||||
|
||||
* gfortran.h: Remove outdated comment. Don't include stdio.h
|
||||
|
@ -2343,9 +2343,9 @@ gfc_conv_intrinsic_verify (gfc_se * se, gfc_expr * expr)
|
||||
/* Prepare components and related information of a real number which is
|
||||
the first argument of a elemental functions to manipulate reals. */
|
||||
|
||||
static
|
||||
void prepare_arg_info (gfc_se * se, gfc_expr * expr,
|
||||
real_compnt_info * rcs, int all)
|
||||
static void
|
||||
prepare_arg_info (gfc_se * se, gfc_expr * expr,
|
||||
real_compnt_info * rcs, int all)
|
||||
{
|
||||
tree arg;
|
||||
tree masktype;
|
||||
@ -2394,19 +2394,19 @@ void prepare_arg_info (gfc_se * se, gfc_expr * expr,
|
||||
rcs->bias = fold (build2 (MINUS_EXPR, masktype, tmp ,one));
|
||||
|
||||
if (all)
|
||||
{
|
||||
/* exponent, and fraction */
|
||||
tmp = build2 (BIT_AND_EXPR, masktype, arg, rcs->emask);
|
||||
tmp = build2 (RSHIFT_EXPR, masktype, tmp, rcs->fdigits);
|
||||
exponent = gfc_create_var (masktype, "exponent");
|
||||
gfc_add_modify_expr(&se->pre, exponent, tmp);
|
||||
rcs->expn = exponent;
|
||||
{
|
||||
/* exponent, and fraction */
|
||||
tmp = build2 (BIT_AND_EXPR, masktype, arg, rcs->emask);
|
||||
tmp = build2 (RSHIFT_EXPR, masktype, tmp, rcs->fdigits);
|
||||
exponent = gfc_create_var (masktype, "exponent");
|
||||
gfc_add_modify_expr(&se->pre, exponent, tmp);
|
||||
rcs->expn = exponent;
|
||||
|
||||
tmp = build2 (BIT_AND_EXPR, masktype, arg, rcs->fmask);
|
||||
fraction = gfc_create_var (masktype, "fraction");
|
||||
gfc_add_modify_expr(&se->pre, fraction, tmp);
|
||||
rcs->frac = fraction;
|
||||
}
|
||||
tmp = build2 (BIT_AND_EXPR, masktype, arg, rcs->fmask);
|
||||
fraction = gfc_create_var (masktype, "fraction");
|
||||
gfc_add_modify_expr(&se->pre, fraction, tmp);
|
||||
rcs->frac = fraction;
|
||||
}
|
||||
}
|
||||
|
||||
/* Build a call to __builtin_clz. */
|
||||
|
Loading…
Reference in New Issue
Block a user