Pristine Ack-5.5
[Ack-5.5.git] / util / ceg / assemble / obj_assemble / block_as.c
1 block_assemble( instructions, nr, first, last)
2
3 /* Assembles a block of assembly instructions. If the table writer wants 
4  * to combine a block of instructions (e.g., push/pop optimization) he
5  * should changes this routine to his own needs.
6  */
7
8 char **instructions;
9 int nr, first, last;
10 {
11         int i;
12
13         for ( i=0; i<nr; i++)
14                 assemble( instructions[i]);
15 }