Fortran's dump-parse-tree.c: Use '==' not '=' for '.eq.'.
authorTobias Burnus <tobias@codesourcery.com>
Mon, 30 Nov 2020 14:19:39 +0000 (15:19 +0100)
committerTobias Burnus <tobias@codesourcery.com>
Mon, 30 Nov 2020 14:21:21 +0000 (15:21 +0100)
gcc/fortran/
* dump-parse-tree.c (show_expr): Use '==' not '=' for '.eq.'.

gcc/fortran/dump-parse-tree.c

index cab0fb2..1012b11 100644 (file)
@@ -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: