Commit cb119f82 by Jan Hubicka Committed by Jan Hubicka

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
parent a05566a3
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
......
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