Unstackify the components of rectangular numbers in the right order.
authorTaylor R. Campbell <net/mumble/campbell>
Wed, 12 Nov 2008 03:14:33 +0000 (03:14 +0000)
committerTaylor R. Campbell <net/mumble/campbell>
Wed, 12 Nov 2008 03:14:33 +0000 (03:14 +0000)
v7/src/microcode/unstackify.c

index 7bfd642ce636ed56fc48a5175312ed4a2023a671..2fa0609ea3d778689afc7903f19208b20185b210 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: unstackify.c,v 11.7 2008/01/30 20:02:21 cph Exp $
+$Id: unstackify.c,v 11.8 2008/11/12 03:14:33 riastradh Exp $
 
 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
@@ -601,8 +601,8 @@ stackify_push_cons_ratnum (stackify_opcode_t op)
 static void
 stackify_push_cons_recnum (stackify_opcode_t op)
 {
-  SCHEME_OBJECT real = (unstackify_pop ());
   SCHEME_OBJECT imag = (unstackify_pop ());
+  SCHEME_OBJECT real = (unstackify_pop ());
   unstackify_push (MAKE_COMPLEX (real, imag));
 }