Commit c651dca2 by Richard Biener Committed by Richard Biener

re PR middle-end/82149 (match.pd: 2919: bad if test ?)

2017-09-12  Richard Biener  <rguenther@suse.de>

	PR middle-end/82149
	* match.pd ((FTYPE) N CMP CST): Fix typo.

From-SVN: r252007
parent 8101ec85
2017-09-12 Richard Biener <rguenther@suse.de>
PR middle-end/82149
* match.pd ((FTYPE) N CMP CST): Fix typo.
2017-09-12 Simon Atanasyan <simon.atanasyan@imgtec.com> 2017-09-12 Simon Atanasyan <simon.atanasyan@imgtec.com>
* config/mips/mips.c (mips_attribute_table): Add 'short_call' * config/mips/mips.c (mips_attribute_table): Add 'short_call'
......
...@@ -2916,7 +2916,7 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT) ...@@ -2916,7 +2916,7 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
-fno-signaling-nans. */ -fno-signaling-nans. */
bool exception_p bool exception_p
= real_isnan (cst) && (cst->signalling = real_isnan (cst) && (cst->signalling
|| (cmp != EQ_EXPR || cmp != NE_EXPR)); || (cmp != EQ_EXPR && cmp != NE_EXPR));
/* INT?_MIN is power-of-two so it takes /* INT?_MIN is power-of-two so it takes
only one mantissa bit. */ only one mantissa bit. */
bool signed_p = isign == SIGNED; bool signed_p = isign == SIGNED;
......
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