summaryrefslogtreecommitdiff
path: root/gcc/libgcc2.c
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2000-10-20 23:32:10 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2000-10-20 23:32:10 +0000
commit98de4f3fed248f329f7ef6054b401104d10ae2f5 (patch)
treea6d2628ab935531646e4d178e869cc3c2a075cdb /gcc/libgcc2.c
parent9dabf67ebac97ad185212f0a4591b41a67291034 (diff)
downloadgcc-98de4f3fed248f329f7ef6054b401104d10ae2f5.tar.gz
Warning fixes:
* mips.h (REG_CLASS_FROM_LETTER): Cast array arg to unsigned char. * sparc.c (load_pic_register): Delete unused varaible. * libgcc2.c (__addvsi3): Delete unused variable. * libgcc2.h (__absvsi2, __absvdi2, __addvsi3, __addvdi3, __subvsi3, __subvdi3, __mulvsi3, __mulvdi3, __negvsi2, __negvdi2): Prototype. * ssa.c (apply_delayed_renames): Avoid undefined operation. * toplev.c (display_target_options): Make static to match prototype. Delete empty declaration. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36987 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/libgcc2.c')
-rw-r--r--gcc/libgcc2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c
index 88f1fddd3a2..4e4a65c0421 100644
--- a/gcc/libgcc2.c
+++ b/gcc/libgcc2.c
@@ -69,7 +69,7 @@ __negdi2 (DWtype u)
SItype
__addvsi3 (SItype a, SItype b)
{
- SItype w, w1;
+ SItype w;
w = a + b;