From 65e35e6d533e13aff8240fa1054437e90f1a21af Mon Sep 17 00:00:00 2001 From: sater Date: Sat, 19 May 1984 11:38:15 +0000 Subject: [PATCH] added rcsid added code to insure instructions come out in .text space --- mach/proto/cg/codegen.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/mach/proto/cg/codegen.c b/mach/proto/cg/codegen.c index ca04c7821..8c4fb6f0d 100644 --- a/mach/proto/cg/codegen.c +++ b/mach/proto/cg/codegen.c @@ -1,3 +1,7 @@ +#ifndef NORCSID +static char rcsid[] = "$Header$"; +#endif + #include "assert.h" #include "param.h" #include "tables.h" @@ -649,8 +653,10 @@ if (Debug) break; #ifdef REGVARS case DO_PRETURN: - if (toplevel) + if (toplevel) { + swtxt(); regreturn(); /* in mach.c */ + } break; #endif case DO_RETURN: -- 2.34.1