I turned out GCC refuses to use "rm" if we compile without -fomit-frame-pointer
(e.g. without optimization / -O0). So I will still use "m" here.
OK that's fine. then you can probably simplify it like this:
long _arg6 = (long)(arg6); /* Might be in memory */ \
\
asm volatile ( \
"pushl %%ebp\n\t" \
"movl %[_arg6], %%ebp\n\t" \
"int $0x80\n\t" \
"popl %%ebp\n\t" \
: "=a"(_ret) \
: "r"(_num), "r"(_arg1), "r"(_arg2), "r"(_arg3), \
"r"(_arg4),"r"(_arg5), [_arg6]"m"(_arg6) \
: "memory", "cc" \
); \
See ? no more push, no more addl, direct load from memory.