diff options
author | krebbel <krebbel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-08-03 09:18:28 +0000 |
---|---|---|
committer | krebbel <krebbel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-08-03 09:18:28 +0000 |
commit | 2888b920ac445bd5edf43674a0f78603e9e7c3dc (patch) | |
tree | 09532b7cd699a87d0e8e6567a8bedcd068ff7c9b /gcc/explow.c | |
parent | 3bb0337c49e35b8e360e47a460a16f7a91525e48 (diff) | |
download | gcc-2888b920ac445bd5edf43674a0f78603e9e7c3dc.tar.gz |
2009-08-03 Andreas Krebbel <krebbel1@de.ibm.com>
* explow.c (promote_mode): Mark TYPE and PUNSIGNEDP as
possibly unused.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@150367 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/explow.c')
-rw-r--r-- | gcc/explow.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/explow.c b/gcc/explow.c index 32397bcbbf9..5176d1f918f 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -777,7 +777,8 @@ promote_function_mode (const_tree type, enum machine_mode mode, int *punsignedp, to show what signedness to use on extension operations. */ enum machine_mode -promote_mode (const_tree type, enum machine_mode mode, int *punsignedp) +promote_mode (const_tree type ATTRIBUTE_UNUSED, enum machine_mode mode, + int *punsignedp ATTRIBUTE_UNUSED) { /* FIXME: this is the same logic that was there until GCC 4.4, but we probably want to test POINTERS_EXTEND_UNSIGNED even if PROMOTE_MODE |