aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-06-27 04:30:48 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-06-27 04:30:48 +0000
commitac2b50ebeaa23d75920fba71cf7a2683690c17da (patch)
treeac450c4754664a0a7ffc1f672e800eeb30a76b3d
parentd699544205de1ba8d36d98e4842e9a067e4c32ab (diff)
downloadbusybox-w32-ac2b50ebeaa23d75920fba71cf7a2683690c17da.tar.gz
busybox-w32-ac2b50ebeaa23d75920fba71cf7a2683690c17da.tar.bz2
busybox-w32-ac2b50ebeaa23d75920fba71cf7a2683690c17da.zip
add stdcall to FAST_FUNC
text data bss dec hex filename 804476 611 6868 811955 c63b3 busybox_old 804373 611 6868 811852 c634c busybox_unstripped
-rw-r--r--include/platform.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/platform.h b/include/platform.h
index fe68547f0..12cb4d5a7 100644
--- a/include/platform.h
+++ b/include/platform.h
@@ -102,9 +102,9 @@
102 * on non-static, busybox internal functions. Recent versions of gcc 102 * on non-static, busybox internal functions. Recent versions of gcc
103 * optimize statics automatically. FAST_FUNC on static is required 103 * optimize statics automatically. FAST_FUNC on static is required
104 * only if you need to match a function pointer's type */ 104 * only if you need to match a function pointer's type */
105#if __GNUC_PREREQ(3,0) && defined(i386) 105#if __GNUC_PREREQ(3,0) && defined(i386) /* || defined(__x86_64__)? */
106/* || defined(__x86_64__)? */ 106/* stdcall makes callee to pop arguments from stack, not caller */
107# define FAST_FUNC __attribute__((regparm(3))) 107# define FAST_FUNC __attribute__((regparm(3),stdcall))
108/* #elif ... - add your favorite arch today! */ 108/* #elif ... - add your favorite arch today! */
109#else 109#else
110# define FAST_FUNC 110# define FAST_FUNC