From: Sergei Trofimovich <siarh...@google.com> gcc/fortran/ * gfortran.texi (BOZ literal constants): fix invalid BOZ 'ABC'X example to be X'ABC'. --- gcc/fortran/gfortran.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gcc/fortran/gfortran.texi b/gcc/fortran/gfortran.texi index 326470964b0..f01a49c47cc 100644 --- a/gcc/fortran/gfortran.texi +++ b/gcc/fortran/gfortran.texi @@ -1465,7 +1465,7 @@ dependent. Gfortran interprets the sign bit as a user would expect. As a deprecated extension, GNU Fortran allows hexadecimal BOZ literal constants to be specified using the @code{X} prefix. That the BOZ literal constant can also be specified by adding a suffix to the string, for -example, @code{Z'ABC'} and @code{'ABC'X} are equivalent. Additionally, +example, @code{Z'ABC'} and @code{X'ABC'} are equivalent. Additionally, as extension, BOZ literals are permitted in some contexts outside of @code{DATA} and the intrinsic functions listed in the Fortran standard. Use @option{-fallow-invalid-boz} to enable the extension. -- 2.33.1