From 2090a5d6d2e96c2a99094cd0a5f5d6e5c5bd3409 Mon Sep 17 00:00:00 2001 From: Mark Eggleston Date: Tue, 26 Nov 2019 10:12:44 +0000 Subject: [PATCH] Update Fortran changes --- htdocs/gcc-10/changes.html | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/htdocs/gcc-10/changes.html b/htdocs/gcc-10/changes.html index 52eb303..81f2280 100644 --- a/htdocs/gcc-10/changes.html +++ b/htdocs/gcc-10/changes.html @@ -206,6 +206,40 @@ a work-in-progress.

with -std=legacy. -Wargument-mismatch has been removed. +
  • + Default fields widths can be used for I, F + and G format specifiers when excplicit widths are omitted. + Use the option -fdec-format-defaults, this options is implied + with -fdec. +
  • +
  • + A blank format item at the end of a format specification i.e. nothing + following the final comma is allowed. Use the option + -fdec-blank-format-item, this options is implied with + -fdec. +
  • +
  • + Variables with the AUTOMATIC attribute can be used in + EQUIVALENCE statements. +
  • +
  • + Character type names in errors and warnings now include len + in addition to kind, * is used for assumed + length. The kind is omitted if it the default kind. Examples: + CHARACTER(12), CHARACTER(6,4). +
  • +
  • + Allow character literals in assignments and DATA statements + for numeric (INTEGER, REAL, or + COMPLEX) or LOGICAL variables. Use the option + -fdec-char-conversions, this options is implied with + -fdec. +
  • +
  • + DEC comparisons, i.e. allow Hollerith constants to be used in comparisons + with INTEGER, REAL, COMPLEX and + CHARACTER expressions. Use the option -fdec. +
  • -- 1.8.3.1