diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2001-12-06 18:15:46 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2001-12-06 18:15:46 +0000 |
commit | 990290e85dd9b0aa9401f7a5bd076b9b15042787 (patch) | |
tree | cada7c5902c523c40654180b972e84fad1319c10 /gcc | |
parent | 7227d624a68ef1593412bc1f660465911c0f6dd7 (diff) | |
download | gcc-990290e85dd9b0aa9401f7a5bd076b9b15042787.zip gcc-990290e85dd9b0aa9401f7a5bd076b9b15042787.tar.gz gcc-990290e85dd9b0aa9401f7a5bd076b9b15042787.tar.bz2 |
* langhooks.c (lhd_staticp): Mark parameter with ATTRIBUTE_UNUSED.
From-SVN: r47727
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/langhooks.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 697824e..abae69b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-12-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * langhooks.c (lhd_staticp): Mark parameter with + ATTRIBUTE_UNUSED. + 2001-12-06 H.J. Lu <hjl@gnu.org> * Makefile.in (.po.gmo): Use "-test -d po || mkdir po" to diff --git a/gcc/langhooks.c b/gcc/langhooks.c index e2e7282..4ad9ae3 100644 --- a/gcc/langhooks.c +++ b/gcc/langhooks.c @@ -81,7 +81,7 @@ lhd_safe_from_p (x, exp) int lhd_staticp (exp) - tree exp; + tree exp ATTRIBUTE_UNUSED; { return 0; } |