Remove register keyword from dSP; (at least for now)
authorNicholas Clark <nick@ccl4.org>
Sun, 21 Jan 2007 20:06:45 +0000 (20:06 +0000)
committerNicholas Clark <nick@ccl4.org>
Sun, 21 Jan 2007 20:06:45 +0000 (20:06 +0000)
p4raw-id: //depot/perl@29907

pp.h

diff --git a/pp.h b/pp.h
index 1f0820a..9c805c6 100644 (file)
--- a/pp.h
+++ b/pp.h
@@ -65,7 +65,7 @@ Refetch the stack pointer.  Used after a callback.  See L<perlcall>.
 #define TOPMARK                (*PL_markstack_ptr)
 #define POPMARK                (*PL_markstack_ptr--)
 
-#define dSP            register SV **sp = PL_stack_sp
+#define dSP            SV **sp = PL_stack_sp
 #define djSP           dSP
 #define dMARK          register SV **mark = PL_stack_base + POPMARK
 #define dORIGMARK      const I32 origmark = mark - PL_stack_base