aboutsummaryrefslogtreecommitdiff
path: root/gcc/libgcc2.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2000-10-20 23:32:10 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2000-10-20 23:32:10 +0000
commit8f54374ed39bb6272d54bcd070baf30e402f3af5 (patch)
treea6d2628ab935531646e4d178e869cc3c2a075cdb /gcc/libgcc2.c
parenta9770f9a9131cbd7420d1eee0edac01ec19eda6f (diff)
downloadgcc-8f54374ed39bb6272d54bcd070baf30e402f3af5.zip
gcc-8f54374ed39bb6272d54bcd070baf30e402f3af5.tar.gz
gcc-8f54374ed39bb6272d54bcd070baf30e402f3af5.tar.bz2
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. From-SVN: r36987
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 88f1fdd..4e4a65c 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;