Commit 0fd3b1ea authored by Alexandre Julliard's avatar Alexandre Julliard

Revert "winebuild: Quote stdcall decored symbols."

This reverts commit a3e1fe93. It breaks with older binutils. Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent a0190cc2
......@@ -759,7 +759,7 @@ static void output_module16( DLLSPEC *spec )
if (!odp || !is_function( odp )) continue;
output( ".L__wine_%s_%u:\n", spec->c_name, i );
output( "\tpushw %%bp\n" );
output( "\tpushl $\"%s\"\n",
output( "\tpushl $%s\n",
asm_name( odp->type == TYPE_STUB ? get_stub_name( odp, spec ) : get_link_name( odp )));
output( "\tcallw .L__wine_spec_callfrom16_%s\n", get_callfrom16_name( odp ) );
}
......
......@@ -570,7 +570,7 @@ void output_exports( DLLSPEC *spec )
output( "1:\tjmp *__imp_%s-1b(%%eax)\n", asm_name( get_link_name( odp )));
needs_get_pc_thunk = 1;
}
else output( "\tjmp *\"__imp_%s\"\n", asm_name( get_link_name( odp )));
else output( "\tjmp *__imp_%s\n", asm_name( get_link_name( odp )));
break;
case CPU_x86_64:
output( "\t.byte 0x48\n" ); /* hotpatch prolog */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment