add stdcall to FAST_FUNC
authorDenis Vlasenko <vda.linux@googlemail.com>
Fri, 27 Jun 2008 04:30:48 +0000 (04:30 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Fri, 27 Jun 2008 04:30:48 +0000 (04:30 -0000)
   text    data     bss     dec     hex filename
 804476     611    6868  811955   c63b3 busybox_old
 804373     611    6868  811852   c634c busybox_unstripped

include/platform.h

index fe68547f09386c1e3d0ce51d752efec95a741f61..12cb4d5a7c648b1fd9b34c2bd6c777e9539f4181 100644 (file)
  * on non-static, busybox internal functions. Recent versions of gcc
  * optimize statics automatically. FAST_FUNC on static is required
  * only if you need to match a function pointer's type */
-#if __GNUC_PREREQ(3,0) && defined(i386)
-/* || defined(__x86_64__)? */
-# define FAST_FUNC __attribute__((regparm(3)))
+#if __GNUC_PREREQ(3,0) && defined(i386) /* || defined(__x86_64__)? */
+/* stdcall makes callee to pop arguments from stack, not caller */
+# define FAST_FUNC __attribute__((regparm(3),stdcall))
 /* #elif ... - add your favorite arch today! */
 #else
 # define FAST_FUNC