Commit d60eaeff by Jeffrey A Law Committed by Jeff Law

expr.c (convert_move): Fix arguments to TRULY_NOOP_TRUNCATION call.

        * expr.c (convert_move): Fix arguments to TRULY_NOOP_TRUNCATION
        call.

From-SVN: r28818
parent 5dd34fe0
Tue Aug 24 02:47:44 1999 Jeffrey A Law (law@cygnus.com)
* expr.c (convert_move): Fix arguments to TRULY_NOOP_TRUNCATION
call.
1999-08-24 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl> 1999-08-24 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
* jump.c (delete_barrier_successors) Match (set (pc) (pc)) insn * jump.c (delete_barrier_successors) Match (set (pc) (pc)) insn
......
...@@ -1020,7 +1020,8 @@ convert_move (to, from, unsignedp) ...@@ -1020,7 +1020,8 @@ convert_move (to, from, unsignedp)
if (((can_extend_p (to_mode, intermediate, unsignedp) if (((can_extend_p (to_mode, intermediate, unsignedp)
!= CODE_FOR_nothing) != CODE_FOR_nothing)
|| (GET_MODE_SIZE (to_mode) < GET_MODE_SIZE (intermediate) || (GET_MODE_SIZE (to_mode) < GET_MODE_SIZE (intermediate)
&& TRULY_NOOP_TRUNCATION (to_mode, intermediate))) && TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (to_mode),
GET_MODE_BITSIZE (intermediate))))
&& (can_extend_p (intermediate, from_mode, unsignedp) && (can_extend_p (intermediate, from_mode, unsignedp)
!= CODE_FOR_nothing)) != CODE_FOR_nothing))
{ {
......
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