Undo #2519 (breaks universal.c).
Jarkko Hietaniemi [Tue, 29 Dec 1998 12:07:54 +0000 (12:07 +0000)]
p4raw-id: //depot/cfgperl@2521

XSUB.h

diff --git a/XSUB.h b/XSUB.h
index 32e0810..dbe0c39 100644 (file)
--- a/XSUB.h
+++ b/XSUB.h
 #define XSINTERFACE_FUNC_SET(cv,f)     \
                CvXSUBANY(cv).any_dptr = (void (*) _((void*)))(f)
 
-#define XSFLUSHARGS \
-       PL_stack_sp = PL_stack_base + ax + ((off) - 1)
-
-#define XSRETURN(off)                          \
-    STMT_START {                               \
-       XSFLUSHARGS;                            \
-       return;                                 \
+#define XSRETURN(off)                                  \
+    STMT_START {                                       \
+       PL_stack_sp = PL_stack_base + ax + ((off) - 1); \
+       return;                                         \
     } STMT_END
 
 /* Simple macros to put new mortal values onto the stack.   */