diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/graphite-scop-detection.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5bc8351..6930b6c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2017-11-05 Tom de Vries <tom@codesourcery.com> + + PR other/82784 + * graphite-scop-detection.c (DEBUG_PRINT): Remove semicolon after + "do {} while (0)". + 2017-11-04 Michael Clark <michaeljclark@mac.com> * config/riscv/riscv.c (riscv_print_operand): Add a 'i' format. diff --git a/gcc/graphite-scop-detection.c b/gcc/graphite-scop-detection.c index c236556..dd273a4 100644 --- a/gcc/graphite-scop-detection.c +++ b/gcc/graphite-scop-detection.c @@ -81,7 +81,7 @@ public: #define DEBUG_PRINT(args) do \ { \ if (dump_file && (dump_flags & TDF_DETAILS)) { args; } \ - } while (0); + } while (0) /* Pretty print to FILE all the SCoPs in DOT format and mark them with different colors. If there are not enough colors, paint the |