Commit 0e6b2107 by Gavin Romig-Koch Committed by Gavin Romig-Koch

* integrate.c (expand_inline_function): Add necessary check for NULL.

From-SVN: r30575
parent bb51178f
1999-11-18 Gavin Romig-Koch <gavin@cygnus.com>
* integrate.c (expand_inline_function): Add necessary check for NULL.
1999-11-18 Nick Clifton <nickc@cygnus.com>
* toplev.c (main): Correctly detect an unrecognised option.
......
......@@ -1342,7 +1342,8 @@ expand_inline_function (fndecl, parms, target, ignore, type,
/* If the function returns a BLKmode object in a register, copy it
out of the temp register into a BLKmode memory object. */
if (TYPE_MODE (TREE_TYPE (TREE_TYPE (fndecl))) == BLKmode
if (target
&& TYPE_MODE (TREE_TYPE (TREE_TYPE (fndecl))) == BLKmode
&& ! aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl))))
target = copy_blkmode_from_reg (0, target, TREE_TYPE (TREE_TYPE (fndecl)));
......
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