Don't output register function code if it's a forwarded entry point.

This commit is contained in:
Alexandre Julliard 2003-04-03 18:05:17 +00:00
parent 2229472d94
commit 08dfb8c91a
1 changed files with 1 additions and 0 deletions

View File

@ -372,6 +372,7 @@ static void output_register_funcs( FILE *outfile )
ORDDEF *odp = EntryPoints[i];
if (odp->type != TYPE_STDCALL && odp->type != TYPE_CDECL) continue;
if (!(odp->flags & FLAG_REGISTER)) continue;
if (odp->flags & FLAG_FORWARD) continue;
name = make_internal_name( odp, "regs" );
fprintf( outfile,
"asm(\".align %d\\n\\t\"\n"