Commit 37877eb0 by Mark Mitchell

stmt.c (expand_value_return): Fix typo in this change:

	* stmt.c (expand_value_return): Fix typo in this change:

	Thu Oct 28 18:06:50 1999  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
	(expand_value_return): Correctly convert VAL when promoting function
	return; support RETURN_REG being a PARALLEL.

From-SVN: r30308
parent 8988b217
...@@ -2692,8 +2692,8 @@ expand_value_return (val) ...@@ -2692,8 +2692,8 @@ expand_value_return (val)
if (return_reg != val) if (return_reg != val)
{ {
#ifdef PROMOTE_FUNCTION_RETURN
tree type = TREE_TYPE (DECL_RESULT (current_function_decl)); tree type = TREE_TYPE (DECL_RESULT (current_function_decl));
#ifdef PROMOTE_FUNCTION_RETURN
int unsignedp = TREE_UNSIGNED (type); int unsignedp = TREE_UNSIGNED (type);
enum machine_mode old_mode enum machine_mode old_mode
= DECL_MODE (DECL_RESULT (current_function_decl)); = DECL_MODE (DECL_RESULT (current_function_decl));
......
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