diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2001-11-28 12:13:50 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2001-11-28 07:13:50 -0500 |
commit | f80230c1e8051691cf5eb6c39d0c649059cb87d4 (patch) | |
tree | c64e5d909e6bd113b57e307b8a87e358fc278cca /gcc/langhooks.c | |
parent | 36221fc4ec0e13eece16f20d5e0262458d013026 (diff) | |
download | gcc-f80230c1e8051691cf5eb6c39d0c649059cb87d4.zip gcc-f80230c1e8051691cf5eb6c39d0c649059cb87d4.tar.gz gcc-f80230c1e8051691cf5eb6c39d0c649059cb87d4.tar.bz2 |
* langhooks.c (lhd_safe_from_p): Add ATTRIBUTE_UNUSED.
From-SVN: r47413
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 3054ee7..8ae3055 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; } |