re PR target/20424 (Bootstrap failure on alphaev56)

PR bootstrap/20424
	* config/alpha/alpha.c (alpha_fold_builtin_cmpbge): Fix typo.

From-SVN: r96431
This commit is contained in:
Falk Hueffner 2005-03-14 15:44:10 +01:00 committed by Falk Hueffner
parent bd3d082ebe
commit 184107932d
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-03-14 Falk Hueffner <falk@debian.org>
PR bootstrap/20424
* config/alpha/alpha.c (alpha_fold_builtin_cmpbge): Fix typo.
2005-03-14 Kazu Hirata <kazu@cs.umass.edu>
* ggc-zone.c: Fix comment typos.

View File

@ -6137,7 +6137,7 @@ alpha_fold_builtin_cmpbge (unsigned HOST_WIDE_INT opint[], long op_const)
}
return build_int_cst (long_integer_type_node, val);
}
else if (op_const == 1 && opint[0] == 0)
else if (op_const == 2 && opint[1] == 0)
return build_int_cst (long_integer_type_node, 0xff);
return NULL;
}