OSDN Git Service

* treetree.c (build_stmt): Remove VPARAMS.
authornathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 18 Jun 2003 14:20:45 +0000 (14:20 +0000)
committernathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 18 Jun 2003 14:20:45 +0000 (14:20 +0000)
(pedwarn_c99): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68154 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/treelang/ChangeLog
gcc/treelang/treetree.c

index e749967..a900378 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-18  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * treetree.c (build_stmt): Remove VPARAMS.
+       (pedwarn_c99): Likewise.
+
 2003-06-15  Neil Booth  <neil@daikokuya.co.uk>
 
        * lang.opt: Declare Treelang.  Update.
index bbc0c3f..11f59d0 100644 (file)
@@ -869,7 +869,7 @@ c_lex (tree *value ATTRIBUTE_UNUSED)
 /* Should not be called for treelang.   */
 
 tree
-build_stmt VPARAMS ((enum tree_code code  ATTRIBUTE_UNUSED, ...))
+build_stmt (enum tree_code code  ATTRIBUTE_UNUSED, ...)
 {
   abort ();
 }
@@ -893,7 +893,7 @@ build_return_stmt (tree expr ATTRIBUTE_UNUSED)
 /* C warning, ignore.  */
 
 void
-pedwarn_c99 VPARAMS ((const char *msgid ATTRIBUTE_UNUSED, ...))
+pedwarn_c99 (const char *msgid ATTRIBUTE_UNUSED, ...)
 {
   return;
 }