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/langhooks.c | |
parent | 7227d624a68ef1593412bc1f660465911c0f6dd7 (diff) | |
download | gcc-990290e85dd9b0aa9401f7a5bd076b9b15042787.tar.gz |
* langhooks.c (lhd_staticp): Mark parameter with ATTRIBUTE_UNUSED.
From-SVN: r47727
Diffstat (limited to 'gcc/langhooks.c')
-rw-r--r-- | gcc/langhooks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/langhooks.c b/gcc/langhooks.c index e2e72826bb3..4ad9ae3e960 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; } |