diff options
author | Tobias Burnus <tobias@codesourcery.com> | 2020-11-30 15:19:39 +0100 |
---|---|---|
committer | Tobias Burnus <tobias@codesourcery.com> | 2020-11-30 15:21:21 +0100 |
commit | 2610c786f7496c5006bb68d6801ef7450bd231a9 (patch) | |
tree | 479c027d4dfce4d8f189749ec28b907f5178f039 /gcc/fortran/dump-parse-tree.c | |
parent | 69bde2d1e0fd0de3348017a5cbf7b5ac2ec5857a (diff) | |
download | gcc-2610c786f7496c5006bb68d6801ef7450bd231a9.zip gcc-2610c786f7496c5006bb68d6801ef7450bd231a9.tar.gz gcc-2610c786f7496c5006bb68d6801ef7450bd231a9.tar.bz2 |
Fortran's dump-parse-tree.c: Use '==' not '=' for '.eq.'.
gcc/fortran/
* dump-parse-tree.c (show_expr): Use '==' not '=' for '.eq.'.
Diffstat (limited to 'gcc/fortran/dump-parse-tree.c')
-rw-r--r-- | gcc/fortran/dump-parse-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
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: |