i386.c (ix86_expand_int_movcc): Check result of ix86_expand_int_movcc as boolean.

* config/i386/i386.c (ix86_expand_int_movcc): Check result of
	ix86_expand_int_movcc as boolean.

From-SVN: r226555
This commit is contained in:
Uros Bizjak 2015-08-04 11:54:08 +02:00
parent 0cfff2a1d9
commit eadc745824
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2015-08-04 Uros Bizjak <ubizjak@gmail.com>
* config/i386/i386.c (ix86_expand_int_movcc): Check result of
ix86_expand_int_movcc as boolean.
2015-08-04 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* config/aarch64/aarch64.opt (aarch64_arch_string): Delete.

View File

@ -21245,7 +21245,7 @@ ix86_expand_int_movcc (rtx operands[])
operands[0] = tmp;
/* Recurse to get the constant loaded. */
if (ix86_expand_int_movcc (operands) == 0)
if (!ix86_expand_int_movcc (operands))
return false;
/* Mask in the interesting variable. */