diff options
author | Steve Ellcey <sje@cup.hp.com> | 2003-03-17 20:34:04 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2003-03-17 20:34:04 +0000 |
commit | 405a98aa2b0e09265760cb32423d0e163650f5c1 (patch) | |
tree | 4b013bdb68abe0101f8f50dfd676e4640c859dd9 /gcc | |
parent | df86c7e2a5eb60f594f29b9d049e821698463af6 (diff) | |
download | gcc-405a98aa2b0e09265760cb32423d0e163650f5c1.zip gcc-405a98aa2b0e09265760cb32423d0e163650f5c1.tar.gz gcc-405a98aa2b0e09265760cb32423d0e163650f5c1.tar.bz2 |
stmt.c (tail_recursion_args): Call promote_mode to set unsignedp flag correctly before calling convert_move.
* stmt.c (tail_recursion_args): Call promote_mode to set
unsignedp flag correctly before calling convert_move.
From-SVN: r64501
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/stmt.c | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c1daf1a..7859221 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-03-17 Steve Ellcey <sje@cup.hp.com> + + * stmt.c (tail_recursion_args): Call promote_mode to set + unsignedp flag correctly before calling convert_move. + 2003-03-17 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz> * loop-unroll.c (decide_peel_completely, @@ -3350,15 +3350,15 @@ tail_recursion_args (actuals, formals) else { rtx tmp = argvec[i]; - + int unsignedp = TREE_UNSIGNED (TREE_TYPE (TREE_VALUE (a))); + promote_mode(TREE_TYPE (TREE_VALUE (a)), GET_MODE (tmp), + &unsignedp, 0); if (DECL_MODE (f) != GET_MODE (DECL_RTL (f))) { tmp = gen_reg_rtx (DECL_MODE (f)); - convert_move (tmp, argvec[i], - TREE_UNSIGNED (TREE_TYPE (TREE_VALUE (a)))); + convert_move (tmp, argvec[i], unsignedp); } - convert_move (DECL_RTL (f), tmp, - TREE_UNSIGNED (TREE_TYPE (TREE_VALUE (a)))); + convert_move (DECL_RTL (f), tmp, unsignedp); } } |