From: Tobias Burnus Date: Mon, 30 Nov 2020 14:19:39 +0000 (+0100) Subject: Fortran's dump-parse-tree.c: Use '==' not '=' for '.eq.'. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2610c786f7496c5006bb68d6801ef7450bd231a9;p=gcc.git Fortran's dump-parse-tree.c: Use '==' not '=' for '.eq.'. gcc/fortran/ * dump-parse-tree.c (show_expr): Use '==' not '=' for '.eq.'. --- diff --git a/gcc/fortran/dump-parse-tree.c b/gcc/fortran/dump-parse-tree.c index cab0fb2979f..1012b11fb98 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: