Commit 2801ed8e by Richard Sandiford Committed by Richard Sandiford

varasm.c (copy_constant): Fix reversed gcc_assert check.

gcc/
	* varasm.c (copy_constant): Fix reversed gcc_assert check.

From-SVN: r117121
parent a1adedd0
2006-09-21 Richard Sandiford <richard@codesourcery.com>
* varasm.c (copy_constant): Fix reversed gcc_assert check.
2006-09-21 Janis Johnson <janis187@us.ibm.com>
* ginclude/decfloat.h (DEC*_DEN): Define using the correct builtins.
......
......@@ -2749,7 +2749,7 @@ copy_constant (tree exp)
{
tree t = lang_hooks.expand_constant (exp);
gcc_assert (t == exp);
gcc_assert (t != exp);
return copy_constant (t);
}
}
......
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