Skip to content

Commit

Permalink
add export support
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterBright committed Oct 12, 2012
1 parent 4b899f4 commit 1cf1b01
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/backend/mscoffobj.c
Original file line number Diff line number Diff line change
Expand Up @@ -1823,7 +1823,9 @@ char *obj_mangle2(Symbol *s,char *dest)

void MsCoffObj::export_symbol(Symbol *s,unsigned argsize)
{
//dbg_printf("MsCoffObj::export_symbol(%s,%d)\n",s->Sident,argsize);
//printf("MsCoffObj::export_symbol(%s,%d)\n",s->Sident,argsize);
SegData[segidx_drectve]->SDbuf->write(" /EXPORT:", 9);
SegData[segidx_drectve]->SDbuf->write(s->Sident, strlen(s->Sident));
}

/*******************************
Expand Down

0 comments on commit 1cf1b01

Please sign in to comment.