* tree.h (integer_nonzerop): Use PARAMS macro with prototype.
* tree.c (integer_nonzerop): Use K&R style function declaration.
From-SVN: r75355
+2004-01-02 Roger Sayle <roger@eyesopen.com>
+
+ * tree.h (integer_nonzerop): Use PARAMS macro with prototype.
+ * tree.c (integer_nonzerop): Use K&R style function declaration.
+
2004-01-02 Andreas Schwab <schwab@suse.de>
* doc/c-tree.texi: Fix @item vs. @itemx.
/* Language-independent node constructors for parse phase of GNU compiler.
Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
- 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+ 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
This file is part of GCC.
complex constant other than zero. */
int
-integer_nonzerop (tree expr)
+integer_nonzerop (expr)
+ tree expr;
{
STRIP_NOPS (expr);
/* Front-end tree definitions for GNU compiler.
Copyright (C) 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
- 2001, 2002 Free Software Foundation, Inc.
+ 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
This file is part of GCC.
/* integer_nonzerop (tree x) is nonzero if X is an integer constant
with a nonzero value. */
-extern int integer_nonzerop (tree);
+extern int integer_nonzerop PARAMS ((tree));
/* staticp (tree x) is nonzero if X is a reference to data allocated
at a fixed address in memory. */