Commit 95216dec by Richard Kenner

(check_function_format): Correct error in last change.

From-SVN: r5680
parent ea8daa3b
......@@ -498,7 +498,7 @@ check_function_format (name, assembler_name, params)
/* See if this function is a format function. */
for (info = function_format_list; info; info = info->next)
{
if ((info->assembler_name || assembler_name)
if (info->assembler_name
? (info->assembler_name == assembler_name)
: (info->name == name))
{
......
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