Commit e6fe680d by Jason Merrill Committed by Jason Merrill

semantics.c (genrtl_finish_function): Don't try to jump to return_label unless it exists.

        * semantics.c (genrtl_finish_function): Don't try to jump to
        return_label unless it exists.

From-SVN: r38461
parent e5214479
2000-12-22 Jason Merrill <jason@redhat.com>
* semantics.c (genrtl_finish_function): Don't try to jump to
return_label unless it exists.
In partial ordering for a call, ignore parms for which we don't have
a real argument.
* call.c (joust): Pass len to more_specialized.
......
......@@ -2606,7 +2606,8 @@ genrtl_finish_function (fn)
/* Finish building code that will trigger warnings if users forget
to make their functions return values. */
emit_jump (return_label);
if (return_label)
emit_jump (return_label);
if (no_return_label)
{
/* We don't need to call `expand_*_return' here because we don'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