Commit 8041d6ab by Danny Smith Committed by Danny Smith

winnt.c (i386_pe_output_labelref): Correct misplaced ')'.

	* config/i386/winnt.c (i386_pe_output_labelref): Correct
	misplaced ')'.

From-SVN: r82862
parent 33300a2e
2004-06-09 Danny Smith <dannysmith@users.sourceforge.net>
* config/i386/winnt.c (i386_pe_output_labelref); Correct
* config/i386/winnt.c (i386_pe_output_labelref): Correct
misplaced ')'.
2004-06-09 Steven Bosscher <stevenb@suse.de>
......
......@@ -603,9 +603,9 @@ void i386_pe_output_labelref (FILE *stream, const char *name)
}
}
else if ((name[0] == FASTCALL_PREFIX)
|| (strncmp (name, DLL_EXPORT_PREFIX, strlen (DLL_EXPORT_PREFIX)
|| (strncmp (name, DLL_EXPORT_PREFIX, strlen (DLL_EXPORT_PREFIX))
== 0
&& name[strlen (DLL_EXPORT_PREFIX)] == FASTCALL_PREFIX)))
&& name[strlen (DLL_EXPORT_PREFIX)] == FASTCALL_PREFIX))
/* A fastcall symbol. */
{
fprintf (stream, "%s",
......
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