This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[PATCH] Remove old diagnostic macros.
- From: Marcin BaczyÅski <marbacz at gmail dot com>
- To: gcc-patches at gcc dot gnu dot org
- Cc: Marcin BaczyÅski <marbacz at gmail dot com>
- Date: Tue, 31 May 2016 01:19:54 +0200
- Subject: [PATCH] Remove old diagnostic macros.
- Authentication-results: sourceware.org; auth=none
Hi,
this is my first GCC patch, so please bear with me if something is wrong with
it in an obvious way.
I've found two unused macros in gcc/diagnostic.h. Is the patch okay as is?
Bootstrapped on x86_64-pc-linux-gnu.
2016-05-31 Marcin BaczyÅski <marbacz@gmail.com>
* gcc/diagnostic.h (diagnostic_line_cutoff, diagnostic_flush_buffer):
delete.
---
gcc/diagnostic.h | 6 ------
1 file changed, 6 deletions(-)
diff --git a/gcc/diagnostic.h b/gcc/diagnostic.h
index 48ae50d..58d77df 100644
--- a/gcc/diagnostic.h
+++ b/gcc/diagnostic.h
@@ -231,12 +231,6 @@ diagnostic_inhibit_notes (diagnostic_context * context)
/* Same as output_prefixing_rule. Works on 'diagnostic_context *'. */
#define diagnostic_prefixing_rule(DC) ((DC)->printer->wrapping.rule)
-/* Maximum characters per line in automatic line wrapping mode.
- Zero means don't wrap lines. */
-#define diagnostic_line_cutoff(DC) ((DC)->printer->wrapping.line_cutoff)
-
-#define diagnostic_flush_buffer(DC) pp_flush ((DC)->printer)
-
/* True if the last module or file in which a diagnostic was reported is
different from the current one. */
#define diagnostic_last_module_changed(DC, MAP) \
--
2.8.3