From 1e7d2b2d22c509abbd0a59840fae7c4ed26d273b Mon Sep 17 00:00:00 2001 From: Julian Brown Date: Mon, 23 May 2022 06:19:10 -0700 Subject: Fortran: Typo/unicode-o fixes This patch fixes a minor typo in dump output and a stray unicode character in a comment. 2022-06-01 Julian Brown gcc/fortran/ * dump-parse-tree.cc (show_attr): Fix OMP-UDR-ARTIFICIAL-VAR typo. * trans-openmp.cc (gfc_trans_omp_array_section): Replace stray unicode m-dash character with hyphen. --- gcc/fortran/dump-parse-tree.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/fortran/dump-parse-tree.cc') diff --git a/gcc/fortran/dump-parse-tree.cc b/gcc/fortran/dump-parse-tree.cc index 5ae72dc..ae8ca6f 100644 --- a/gcc/fortran/dump-parse-tree.cc +++ b/gcc/fortran/dump-parse-tree.cc @@ -894,7 +894,7 @@ show_attr (symbol_attribute *attr, const char * module) if (attr->pdt_string) fputs (" PDT-STRING", dumpfile); if (attr->omp_udr_artificial_var) - fputs (" OMP-UDT-ARTIFICIAL-VAR", dumpfile); + fputs (" OMP-UDR-ARTIFICIAL-VAR", dumpfile); if (attr->omp_declare_target) fputs (" OMP-DECLARE-TARGET", dumpfile); if (attr->omp_declare_target_link) -- cgit v1.1