comparison gcc/testsuite/gcc.dg/plugin/diagnostic_group_plugin.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
195 diagnostic group. */ 195 diagnostic group. */
196 196
197 static void 197 static void
198 test_end_group_cb (diagnostic_context * context) 198 test_end_group_cb (diagnostic_context * context)
199 { 199 {
200 pp_set_prefix (context->printer, NULL);
200 pp_string (context->printer, 201 pp_string (context->printer,
201 "---------------------------------- END GROUP -------------------------------"); 202 "---------------------------------- END GROUP -------------------------------");
202 pp_newline_and_flush (context->printer); 203 pp_newline_and_flush (context->printer);
203 } 204 }
204 205