builtins.c (expand_builtin_memcmp): Mark parameter with ATTRIBUTE_UNUSED.

* builtins.c (expand_builtin_memcmp): Mark parameter with
	ATTRIBUTE_UNUSED.
	* cfgcleanup.c (insns_match_p): Likewise.
	* regrename.c (mode_change_ok): Likewise.
	* gcc.c (execute): Const-ify.

From-SVN: r48033
This commit is contained in:
Kaveh R. Ghazi 2001-12-15 04:12:42 +00:00 committed by Kaveh Ghazi
parent d3b4cd6f89
commit 88f92c0f3f
5 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,11 @@
2001-12-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* builtins.c (expand_builtin_memcmp): Mark parameter with
ATTRIBUTE_UNUSED.
* cfgcleanup.c (insns_match_p): Likewise.
* regrename.c (mode_change_ok): Likewise.
* gcc.c (execute): Const-ify.
2001-12-14 Aldy Hernandez <aldyh@redhat.com>
* c-parse.in (typename): Do not split attributes.

View File

@ -2245,7 +2245,7 @@ expand_builtin_bzero (exp)
static rtx
expand_builtin_memcmp (exp, arglist, target, mode)
tree exp;
tree exp ATTRIBUTE_UNUSED;
tree arglist;
rtx target;
enum machine_mode mode;

View File

@ -553,7 +553,7 @@ merge_blocks (e, b, c, mode)
static bool
insns_match_p (mode, i1, i2)
int mode;
int mode ATTRIBUTE_UNUSED;
rtx i1, i2;
{
rtx p1, p2;

View File

@ -2737,7 +2737,7 @@ execute ()
{
for (j = commands[i].argv; *j; j++)
{
char *p;
const char *p;
fprintf (stderr, " \"");
for (p = *j; *p; ++p)
{

View File

@ -1219,7 +1219,7 @@ copy_value (dest, src, vd)
static bool
mode_change_ok (orig_mode, new_mode, regno)
enum machine_mode orig_mode, new_mode;
unsigned int regno;
unsigned int regno ATTRIBUTE_UNUSED;
{
if (GET_MODE_SIZE (orig_mode) < GET_MODE_SIZE (new_mode))
return false;