From: Richard Kenner Date: Thu, 26 May 1994 22:48:18 +0000 (-0400) Subject: (simplify_comparison): Call CANONICALIZE_COMPARISON, if defined. X-Git-Tag: misc/cutover-egcs-0~6590 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b7a775b20bca07cac697f0b99fb85864ee515cef;p=thirdparty%2Fgcc.git (simplify_comparison): Call CANONICALIZE_COMPARISON, if defined. From-SVN: r7353 --- diff --git a/gcc/combine.c b/gcc/combine.c index ce4f49350721..861e40c1cb01 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -9449,6 +9449,12 @@ simplify_comparison (code, pop0, pop1) } } +#ifdef CANONICALIZE_COMPARISON + /* If this machine only supports a subset of valid comparisons, see if we + can convert an unsupported one into a supported one. */ + CANONICALIZE_COMPARISON (code, op0, op1); +#endif + *pop0 = op0; *pop1 = op1;