Commit 254f7d80 by Jim Wilson

(FUNCTION_VALUE): Simplify, just return reg 0.

From-SVN: r2563
parent c44779ee
...@@ -815,8 +815,8 @@ extern struct rtx_def *i960_function_arg (); ...@@ -815,8 +815,8 @@ extern struct rtx_def *i960_function_arg ();
If the precise function being called is known, FUNC is its FUNCTION_DECL; If the precise function being called is known, FUNC is its FUNCTION_DECL;
otherwise, FUNC is 0. */ otherwise, FUNC is 0. */
extern struct rtx_def *i960_function_value (); #define FUNCTION_VALUE(TYPE, FUNC) \
#define FUNCTION_VALUE(TYPE, FUNC) i960_function_value (TYPE) gen_rtx (REG, TYPE_MODE (TYPE), 0)
/* Force objects larger than 16 bytes to be returned in memory, since we /* Force objects larger than 16 bytes to be returned in memory, since we
only have 4 registers available for return values. */ only have 4 registers available for return values. */
......
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