diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-28 12:13:50 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-28 12:13:50 +0000 |
commit | 791ef32b71e626943b381c46b6c55b1e7b1bd6d5 (patch) | |
tree | c64e5d909e6bd113b57e307b8a87e358fc278cca /gcc/langhooks.c | |
parent | 33eb77ac2ee346ea26fb2a86589a8fe15b711bf9 (diff) | |
download | gcc-791ef32b71e626943b381c46b6c55b1e7b1bd6d5.tar.gz |
* langhooks.c (lhd_safe_from_p): Add ATTRIBUTE_UNUSED.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47413 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/langhooks.c')
-rw-r--r-- | gcc/langhooks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/langhooks.c b/gcc/langhooks.c index 3054ee7130c..8ae3055d268 100644 --- a/gcc/langhooks.c +++ b/gcc/langhooks.c @@ -71,8 +71,8 @@ lhd_print_tree_nothing (file, node, indent) int lhd_safe_from_p (x, exp) - rtx x; - tree exp; + rtx x ATTRIBUTE_UNUSED; + tree exp ATTRIBUTE_UNUSED; { return 1; } |