diff options
Diffstat (limited to 'libgfortran/generated/minloc1_4_i1.c')
-rw-r--r-- | libgfortran/generated/minloc1_4_i1.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/libgfortran/generated/minloc1_4_i1.c b/libgfortran/generated/minloc1_4_i1.c index 04a127ec479..2ada8b33303 100644 --- a/libgfortran/generated/minloc1_4_i1.c +++ b/libgfortran/generated/minloc1_4_i1.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2002, 2007, 2009, 2010 Free Software Foundation, Inc. + Copyright (C) 2002-2013 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). @@ -354,12 +354,8 @@ mminloc1_4_i1 (gfc_array_i4 * const restrict retarray, GFC_INTEGER_4 result2 = 0; #endif result = 0; - if (len <= 0) - *dest = 0; - else + for (n = 0; n < len; n++, src += delta, msrc += mdelta) { - for (n = 0; n < len; n++, src += delta, msrc += mdelta) - { if (*msrc) { @@ -387,9 +383,8 @@ mminloc1_4_i1 (gfc_array_i4 * const restrict retarray, minval = *src; result = (GFC_INTEGER_4)n + 1; } - } - *dest = result; } + *dest = result; } /* Advance to the next element. */ count[0]++; |