Commit aa608fe6 by Nick Clifton Committed by Nick Clifton

oops - add missing return values

From-SVN: r30416
parent 71152e6d
Fri Nov 5 12:05:52 1999 Nick Clifton <nickc@cygnus.com>
* function.c (purge_addressof_1): Add missing return values.
Fri Nov 5 10:07:25 1999 Nick Clifton <nickc@cygnus.com>
* function.c (is_addressof): New function. Returns true if
......
......@@ -2896,7 +2896,7 @@ purge_addressof_1 (loc, insn, force, store, ht)
z = gen_lowpart (GET_MODE (x), z);
*loc = z;
return;
return true;
}
/* Sometimes we may not be able to find the replacement. For
......@@ -3033,7 +3033,7 @@ purge_addressof_1 (loc, insn, force, store, ht)
else if (code == ADDRESSOF)
{
put_addressof_into_stack (x, ht);
return;
return true;
}
else if (code == SET)
{
......
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