diff options
author | m.hayes <m.hayes@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-16 22:43:58 +0000 |
---|---|---|
committer | m.hayes <m.hayes@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-16 22:43:58 +0000 |
commit | 578dc36746421923dd3bf8375a1af90ead6bb8ef (patch) | |
tree | 908154d10c250a4124b77af939c9fbf4bb068bc1 /gcc/libgcc2.h | |
parent | 27316470a5748121d605c85def1cc643e0345366 (diff) | |
download | gcc-578dc36746421923dd3bf8375a1af90ead6bb8ef.tar.gz |
* libgcc2.h: Use Wtype for SItype and DWtype for DItype in prototypes.
* libgcc2.c (__absvsi2): Use Wtype and DWtype.
(__absvdi2, __addvsi3, __addvdi3, __subvsi3): Likewise.
(__subvdi3, __mulvsi3, __mulvdi3, __negvsi2, __negvdi2): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38314 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/libgcc2.h')
-rw-r--r-- | gcc/libgcc2.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/libgcc2.h b/gcc/libgcc2.h index ec64046ce7e..ae6865f6619 100644 --- a/gcc/libgcc2.h +++ b/gcc/libgcc2.h @@ -256,16 +256,16 @@ extern UWtype __udiv_w_sdiv (UWtype *, UWtype, UWtype, UWtype); extern word_type __cmpdi2 (DWtype, DWtype); extern word_type __ucmpdi2 (DWtype, DWtype); -extern SItype __absvsi2 (SItype); -extern DItype __absvdi2 (DItype); -extern SItype __addvsi3 (SItype, SItype); -extern DItype __addvdi3 (DItype, DItype); -extern SItype __subvsi3 (SItype, SItype); -extern DItype __subvdi3 (DItype, DItype); -extern SItype __mulvsi3 (SItype, SItype); -extern DItype __mulvdi3 (DItype, DItype); -extern SItype __negvsi2 (SItype); -extern DItype __negvdi2 (DItype); +extern Wtype __absvsi2 (Wtype); +extern DWtype __absvdi2 (DWtype); +extern Wtype __addvsi3 (Wtype, Wtype); +extern DWtype __addvdi3 (DWtype, DWtype); +extern Wtype __subvsi3 (Wtype, Wtype); +extern DWtype __subvdi3 (DWtype, DWtype); +extern Wtype __mulvsi3 (Wtype, Wtype); +extern DWtype __mulvdi3 (DWtype, DWtype); +extern Wtype __negvsi2 (Wtype); +extern DWtype __negvdi2 (DWtype); #if BITS_PER_UNIT == 8 extern DWtype __fixdfdi (DFtype); |