summaryrefslogtreecommitdiff
path: root/gcc/libgcc2.h
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2003-02-05 00:52:24 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2003-02-05 00:52:24 +0000
commit092445b3188376f3b11c2f2914f6ed181b0f8eaa (patch)
tree3cec67f0cfc96008129e3fab75a5e212b3cbd7f0 /gcc/libgcc2.h
parent9acebba82637e1a8e9d0902443f0bf3bd6b70752 (diff)
downloadgcc-092445b3188376f3b11c2f2914f6ed181b0f8eaa.tar.gz
* libgcc2.h, libgcc2.c (__ffsSI2): New.
(__ffsDI2): Rename from __ffsdi2. * mklibgcc.in (lib2funcs): Add _ffssi2. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62422 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/libgcc2.h')
-rw-r--r--gcc/libgcc2.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/libgcc2.h b/gcc/libgcc2.h
index f32f4a08d38..876e1d56c82 100644
--- a/gcc/libgcc2.h
+++ b/gcc/libgcc2.h
@@ -182,7 +182,6 @@ typedef int word_type __attribute__ ((mode (__word__)));
#define __lshrdi3 __NDW(lshr,3)
#define __ashldi3 __NDW(ashl,3)
#define __ashrdi3 __NDW(ashr,3)
-#define __ffsdi2 __NDW(ffs,2)
#define __cmpdi2 __NDW(cmp,2)
#define __ucmpdi2 __NDW(ucmp,2)
#define __udivmoddi4 __NDW(udivmod,4)
@@ -203,6 +202,9 @@ typedef int word_type __attribute__ ((mode (__word__)));
#define __fixunsdfSI __NW(fixunsdf,)
#define __fixunssfSI __NW(fixunssf,)
+#define __ffsSI2 __NW(ffs,2)
+#define __ffsDI2 __NDW(ffs,2)
+
extern DWtype __muldi3 (DWtype, DWtype);
extern DWtype __divdi3 (DWtype, DWtype);
extern UDWtype __udivdi3 (UDWtype, UDWtype);