added rcsid
added code to insure instructions come out in .text space
This commit is contained in:
parent
18e0859e5d
commit
65e35e6d53
1 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
#ifndef NORCSID
|
||||||
|
static char rcsid[] = "$Header$";
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
#include "param.h"
|
#include "param.h"
|
||||||
#include "tables.h"
|
#include "tables.h"
|
||||||
|
@ -649,8 +653,10 @@ if (Debug)
|
||||||
break;
|
break;
|
||||||
#ifdef REGVARS
|
#ifdef REGVARS
|
||||||
case DO_PRETURN:
|
case DO_PRETURN:
|
||||||
if (toplevel)
|
if (toplevel) {
|
||||||
|
swtxt();
|
||||||
regreturn(); /* in mach.c */
|
regreturn(); /* in mach.c */
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
case DO_RETURN:
|
case DO_RETURN:
|
||||||
|
|
Loading…
Reference in a new issue