diff options
author | Tobias Burnus <burnus@net-b.de> | 2006-10-18 19:19:23 +0200 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2006-10-18 19:19:23 +0200 |
commit | 02712c161ff3e6a2b7bd51645bd7fd084d1691c4 (patch) | |
tree | 2827e8d07610eaeda208a637c810a0f8caa6367a /gcc | |
parent | 8b6dba81f050bea9220007f219c0a753af782262 (diff) | |
download | gcc-02712c161ff3e6a2b7bd51645bd7fd084d1691c4.zip gcc-02712c161ff3e6a2b7bd51645bd7fd084d1691c4.tar.gz gcc-02712c161ff3e6a2b7bd51645bd7fd084d1691c4.tar.bz2 |
primary.c: Revert 'significand'-to-'significant' comment change.
2006-10-16 Tobias Burnus <burnus@net-b.de>
* primary.c: Revert 'significand'-to-'significant' comment change.
* invoke.texi (Warning Options): Minor cleanup for
-Wimplicit-interface.
From-SVN: r117858
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/fortran/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/fortran/invoke.texi | 6 | ||||
-rw-r--r-- | gcc/fortran/primary.c | 2 |
3 files changed, 10 insertions, 4 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index ac027c7..a6ff8db 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,9 @@ +2006-10-16 Tobias Burnus <burnus@net-b.de> + + * primary.c: Revert 'significand'-to-'significant' comment change. + * invoke.texi (Warning Options): Minor cleanup for + -Wimplicit-interface. + 2006-10-17 Paul Thomas <pault@gcc.gnu.org> PR fortran/20541 diff --git a/gcc/fortran/invoke.texi b/gcc/fortran/invoke.texi index 46701b7..44f5b2a 100644 --- a/gcc/fortran/invoke.texi +++ b/gcc/fortran/invoke.texi @@ -452,7 +452,7 @@ Warn about implicit conversions between different types. @cindex -Wimplicit-interface option @cindex options, -Wimplicit-interface @item -Wimplicit-interface -Warn about when procedure are called without an explicit interface. +Warn if a procedure is called without an explicit interface. Note this only checks that an explicit interface is present. It does not check that the declared interfaces are consistent across program units. @@ -845,13 +845,13 @@ with code compiled without this option, and may execute slower. @item -frepack-arrays @cindex Repacking arrays In some circumstances GNU Fortran may pass assumed shape array -sections via a descriptor describing a discontinuous area of memory. +sections via a descriptor describing a noncontiguous area of memory. This option adds code to the function prologue to repack the data into a contiguous block at runtime. This should result in faster accesses to the array. However it can introduce significant overhead to the function call, especially when the passed data -is discontinuous. +is noncontiguous. @cindex -fshort-enums @item -fshort-enums diff --git a/gcc/fortran/primary.c b/gcc/fortran/primary.c index 74c7e95..1dd8626 100644 --- a/gcc/fortran/primary.c +++ b/gcc/fortran/primary.c @@ -463,7 +463,7 @@ match_real_constant (gfc_expr ** result, int signflag) c = gfc_next_char (); } - /* Scan significant. */ + /* Scan significand. */ for (;; c = gfc_next_char (), count++) { if (c == '.') |