Commit 6d3e3e6a by Jakub Jelinek Committed by Jakub Jelinek

re PR other/4372 (#pragma weak pthread* inclusion causes applications to crash…

re PR other/4372 (#pragma weak pthread* inclusion causes applications to crash without a linker error when one forgets to link with -lpthread)

	PR other/4372
	* varasm.c (assemble_alias): Use %q+D in the error
	message instead of %J and %qD.

From-SVN: r106735
parent 35b5442a
2005-11-10 Jakub Jelinek <jakub@redhat.com>
PR other/4372
* varasm.c (assemble_alias): Use %q+D in the error
message instead of %J and %qD.
2005-11-10 Richard Guenther <rguenther@suse.de>
* gcse.c (free_ldst_entry): Only free hashtable if
......
......@@ -4855,7 +4855,7 @@ assemble_alias (tree decl, tree target)
ultimate_transparent_alias_target (&target);
if (alias == target)
error ("%Jweakref %qD ultimately targets itself", decl, decl);
error ("weakref %q+D ultimately targets itself", decl);
else
{
#ifndef ASM_OUTPUT_WEAKREF
......
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