Commit 4b07e9f7 by Danny Smith Committed by Danny Smith

winnt.c (i386_pe_file_end): Strip only USER_LABEL_PREFIX when writing export name.

	* config/i386/winnt.c (i386_pe_file_end): Strip only
	USER_LABEL_PREFIX when writing export name.

From-SVN: r124149
parent dd42abcc
2007-04-25 Danny Smith <dannysmith.users.sourceforge.net>
PR target/31680
* config/i386/winnt.c (i386_pe_file_end): Strip only
USER_LABEL_PREFIX when writing export name.
2007-04-25 Richard Sandiford <richard@codesourcery.com>
* config.gcc (sh-wrs-vxworks): Don't include dbxelf.h. Include
......
......@@ -603,7 +603,7 @@ i386_pe_file_end (void)
for (q = export_head; q != NULL; q = q->next)
{
fprintf (asm_out_file, "\t.ascii \" -export:%s%s\"\n",
targetm.strip_name_encoding (q->name),
default_strip_name_encoding (q->name),
(q->is_data ? ",data" : ""));
}
}
......
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