diff options
author | Eric Christopher <echristo@gcc.gnu.org> | 2007-01-04 23:16:34 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gcc.gnu.org> | 2007-01-04 23:16:34 +0000 |
commit | e4b6bec2f1a0b420437fa7a8f6bf2da3dce9c228 (patch) | |
tree | dd4094fdd3ac11de20be720f32640aa8e1967ff6 /gcc/libgcc2.h | |
parent | d6c397b0ffe06e3008d3c82330bf8cf63962b328 (diff) | |
download | gcc-e4b6bec2f1a0b420437fa7a8f6bf2da3dce9c228.tar.gz |
libgcc2.c (__bswapsi2): Use SItype.
2007-01-04 Eric Christopher <echristo@apple.com>
* libgcc2.c (__bswapsi2): Use SItype.
(__bswapdi2): Use DItype.
* libgcc2.h: Update for above.
From-SVN: r120454
Diffstat (limited to 'gcc/libgcc2.h')
-rw-r--r-- | gcc/libgcc2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/libgcc2.h b/gcc/libgcc2.h index d15ab8d9dad..a38758ec11e 100644 --- a/gcc/libgcc2.h +++ b/gcc/libgcc2.h @@ -345,13 +345,13 @@ extern Wtype __addvSI3 (Wtype, Wtype); extern Wtype __subvSI3 (Wtype, Wtype); extern Wtype __mulvSI3 (Wtype, Wtype); extern Wtype __negvSI2 (Wtype); -extern UWtype __bswapsi2 (UWtype); +extern SItype __bswapsi2 (SItype); extern DWtype __absvDI2 (DWtype); extern DWtype __addvDI3 (DWtype, DWtype); extern DWtype __subvDI3 (DWtype, DWtype); extern DWtype __mulvDI3 (DWtype, DWtype); extern DWtype __negvDI2 (DWtype); -extern UDWtype __bswapdi2 (UDWtype); +extern DItype __bswapdi2 (DItype); #ifdef COMPAT_SIMODE_TRAPPING_ARITHMETIC extern SItype __absvsi2 (SItype); |