ack/mach/vax4/ce/end_back.c

25 lines
339 B
C
Raw Normal View History

1988-09-15 09:49:22 +00:00
#include <out.h>
#include "mach.h"
#include "data.h"
#include "back.h"
#include "header.h"
static do_algn();
1988-09-15 09:49:22 +00:00
end_back()
{
do_algn();
1988-09-15 09:49:22 +00:00
do_local_relocation();
output();
}
static
do_algn()
1988-09-15 09:49:22 +00:00
{
while ( ( text - text_area) % EM_WSIZE != 0 )
text1( '\0');
while ( ( data - data_area) % EM_WSIZE != 0 )
con1( '\0');
}