Commit f9c1b67a by Tom de Vries Committed by Tom de Vries

[graphite] Remove semicolon after do {} while (0) in DEBUG_PRINT

2017-11-05  Tom de Vries  <tom@codesourcery.com>

	PR other/82784
	* graphite-scop-detection.c (DEBUG_PRINT): Remove semicolon after
	"do {} while (0)".

From-SVN: r254421
parent 51c20aa3
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> 2017-11-04 Michael Clark <michaeljclark@mac.com>
* config/riscv/riscv.c (riscv_print_operand): Add a 'i' format. * config/riscv/riscv.c (riscv_print_operand): Add a 'i' format.
...@@ -81,7 +81,7 @@ public: ...@@ -81,7 +81,7 @@ public:
#define DEBUG_PRINT(args) do \ #define DEBUG_PRINT(args) do \
{ \ { \
if (dump_file && (dump_flags & TDF_DETAILS)) { args; } \ 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 /* Pretty print to FILE all the SCoPs in DOT format and mark them with
different colors. If there are not enough colors, paint the different colors. If there are not enough colors, paint the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment