combine.c (combine_simplify_rtx): Fix folding of nested float_truncates.
* combine.c (combine_simplify_rtx): Fix folding of nested float_truncates. From-SVN: r62702
This commit is contained in:
parent
a05566a31a
commit
cb119f8263
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue Feb 11 19:03:22 MET 2003 Jan Hubicka <jh@suse.cz>
|
||||
|
||||
* combine.c (combine_simplify_rtx): Fix folding of
|
||||
nested float_truncates.
|
||||
|
||||
2003-02-11 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* config/h8300/h8300.md (a peephole2): Fix a typo.
|
||||
|
|
|
@ -4184,7 +4184,7 @@ combine_simplify_rtx (x, op0_mode, last, in_dest)
|
|||
> GET_MODE_SIZE (mode)
|
||||
? FLOAT_TRUNCATE : FLOAT_EXTEND,
|
||||
mode,
|
||||
XEXP (XEXP (XEXP (x, 0), 0), 0), mode);
|
||||
XEXP (XEXP (x, 0), 0), mode);
|
||||
|
||||
/* (float_truncate (float x)) is (float x) */
|
||||
if (GET_CODE (XEXP (x, 0)) == FLOAT
|
||||
|
|
Loading…
Add table
Reference in a new issue