Commit 23b488ad by Kai Tietz Committed by Kai Tietz

winnt.c (i386_pe_file_end): Quote symbol name in directive -export.

2010-07-11  Kai Tietz  <kai.tietz@onevision.com>

	* config/i386/winnt.c (i386_pe_file_end): Quote symbol name
	in directive -export.

From-SVN: r162055
parent 160ea5dd
2010-07-11 Kai Tietz <kai.tietz@onevision.com>
* config/i386/winnt.c (i386_pe_file_end): Quote symbol name
in directive -export.
2010-07-10 Anatoly Sokolov <aesok@post.ru> 2010-07-10 Anatoly Sokolov <aesok@post.ru>
* reginfo.h (reg_classes_intersect_p): Change arguments type to * reginfo.h (reg_classes_intersect_p): Change arguments type to
......
...@@ -723,7 +723,7 @@ i386_pe_file_end (void) ...@@ -723,7 +723,7 @@ i386_pe_file_end (void)
drectve_section (); drectve_section ();
for (q = export_head; q != NULL; q = q->next) for (q = export_head; q != NULL; q = q->next)
{ {
fprintf (asm_out_file, "\t.ascii \" -export:%s%s\"\n", fprintf (asm_out_file, "\t.ascii \" -export:\\\"%s\\\"%s\"\n",
default_strip_name_encoding (q->name), default_strip_name_encoding (q->name),
(q->is_data ? ",data" : "")); (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