summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>2003-05-09 10:08:19 +0000
committergdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>2003-05-09 10:08:19 +0000
commitd5ac54ab82ea923a64b03b0a89905493e4d48656 (patch)
tree9a488dafed721b37d0e287e45090ec46d2853f94
parentb14b763f1fd43a15ebafaeedf8b520849d7459a5 (diff)
downloadgcc-d5ac54ab82ea923a64b03b0a89905493e4d48656.tar.gz
* toplev.h (warning_with_file_and_line): Don't declare.
(error_with_file_and_line): Likewise. * diagnostic.c (error_with_file_and_line): Remove. (warning_with_file_and_line): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66628 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/diagnostic.c32
-rw-r--r--gcc/toplev.h4
3 files changed, 7 insertions, 36 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4478a942c70..3fd5e67a12d 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,12 @@
2003-05-09 Gabriel Dos Reis <gdr@integrable-solutions.net>
+ * toplev.h (warning_with_file_and_line): Don't declare.
+ (error_with_file_and_line): Likewise.
+ * diagnostic.c (error_with_file_and_line): Remove.
+ (warning_with_file_and_line): Likewise.
+
+2003-05-09 Gabriel Dos Reis <gdr@integrable-solutions.net>
+
* c-parse.in (if_stmt_locus): New object.
(if_prefix rule): Use it. Don't use warning_with_file_and_line.
(select_or_iter_stmt rule): Likewise.
diff --git a/gcc/diagnostic.c b/gcc/diagnostic.c
index 58450b1a361..e7e39ba9e18 100644
--- a/gcc/diagnostic.c
+++ b/gcc/diagnostic.c
@@ -1080,22 +1080,6 @@ diagnostic_report_current_function (context)
}
void
-error_with_file_and_line VPARAMS ((const char *file, int line,
- const char *msgid, ...))
-{
- diagnostic_info diagnostic;
-
- VA_OPEN (ap, msgid);
- VA_FIXEDARG (ap, const char *, file);
- VA_FIXEDARG (ap, int, line);
- VA_FIXEDARG (ap, const char *, msgid);
-
- diagnostic_set_info (&diagnostic, msgid, &ap, file, line, DK_ERROR);
- report_diagnostic (&diagnostic);
- VA_CLOSE (ap);
-}
-
-void
error_with_decl VPARAMS ((tree decl, const char *msgid, ...))
{
diagnostic_info diagnostic;
@@ -1183,22 +1167,6 @@ See %s for instructions.\n", bug_report_url);
}
void
-warning_with_file_and_line VPARAMS ((const char *file, int line,
- const char *msgid, ...))
-{
- diagnostic_info diagnostic;
-
- VA_OPEN (ap, msgid);
- VA_FIXEDARG (ap, const char *, file);
- VA_FIXEDARG (ap, int, line);
- VA_FIXEDARG (ap, const char *, msgid);
-
- diagnostic_set_info (&diagnostic, msgid, &ap, file, line, DK_WARNING);
- report_diagnostic (&diagnostic);
- VA_CLOSE (ap);
-}
-
-void
warning_with_decl VPARAMS ((tree decl, const char *msgid, ...))
{
diagnostic_info diagnostic;
diff --git a/gcc/toplev.h b/gcc/toplev.h
index 7da7654a093..a55e73016bb 100644
--- a/gcc/toplev.h
+++ b/gcc/toplev.h
@@ -59,10 +59,6 @@ extern void error PARAMS ((const char *, ...));
extern void fatal_error PARAMS ((const char *, ...))
ATTRIBUTE_NORETURN;
extern void pedwarn PARAMS ((const char *, ...));
-extern void warning_with_file_and_line PARAMS ((const char *, int,
- const char *, ...));
-extern void error_with_file_and_line PARAMS ((const char *, int,
- const char *, ...));
extern void sorry PARAMS ((const char *, ...));
extern void rest_of_decl_compilation PARAMS ((union tree_node *,