From 2610c786f7496c5006bb68d6801ef7450bd231a9 Mon Sep 17 00:00:00 2001 From: Tobias Burnus Date: Mon, 30 Nov 2020 15:19:39 +0100 Subject: [PATCH] Fortran's dump-parse-tree.c: Use '==' not '=' for '.eq.'. gcc/fortran/ * dump-parse-tree.c (show_expr): Use '==' not '=' for '.eq.'. --- gcc/fortran/dump-parse-tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/fortran/dump-parse-tree.c b/gcc/fortran/dump-parse-tree.c index cab0fb2..1012b11 100644 --- a/gcc/fortran/dump-parse-tree.c +++ b/gcc/fortran/dump-parse-tree.c @@ -648,7 +648,7 @@ show_expr (gfc_expr *p) break; case INTRINSIC_EQ: case INTRINSIC_EQ_OS: - fputs ("= ", dumpfile); + fputs ("== ", dumpfile); break; case INTRINSIC_NE: case INTRINSIC_NE_OS: -- 2.7.4