added rcsid
Changed register message output to terminate with ms_gto, if input procedure contained one.
This commit is contained in:
parent
7a8f9ed57c
commit
29202fe224
|
@ -1,3 +1,7 @@
|
||||||
|
#ifndef NORCSID
|
||||||
|
static char rcsid[] = "$Header$";
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
#include "param.h"
|
#include "param.h"
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
|
@ -76,9 +80,12 @@ outregs() {
|
||||||
}
|
}
|
||||||
oldreg(rp);
|
oldreg(rp);
|
||||||
}
|
}
|
||||||
/* Now an empty mes 3 to signal the end. */
|
/* List of register messages is followed by an empty ms_reg
|
||||||
|
* unless an ms_gto was in this procedure, then the ms_gto
|
||||||
|
* will be output. Kludgy.
|
||||||
|
*/
|
||||||
outinst(ps_mes);
|
outinst(ps_mes);
|
||||||
outoff((offset)ms_reg);
|
outoff((offset)(curpro.gtoproc? ms_gto : ms_reg));
|
||||||
outinst(sp_cend);
|
outinst(sp_cend);
|
||||||
curpro.freg = (reg_p) 0;
|
curpro.freg = (reg_p) 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue