* optabs.c (expand_sync_operation): Fix typo expanding nand to and.

From-SVN: r98327
This commit is contained in:
Richard Henderson 2005-04-18 09:05:12 -07:00 committed by Richard Henderson
parent 5ce7999da0
commit 46c94db618
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,8 @@
* builtins.c (expand_builtin_sync_operation): Fold nand to and
for constants.
* optabs.c (expand_sync_operation): Fix typo expanding nand to and.
2005-04-18 Devang Patel <dpatel@apple.com>
* config/rs6000/atlivec.md (mulv4si3): New pattern.

View File

@ -5751,7 +5751,7 @@ expand_sync_operation (rtx mem, rtx val, enum rtx_code code)
case NOT:
icode = sync_nand_optab[mode];
if (icode != CODE_FOR_nothing)
if (icode == CODE_FOR_nothing)
{
icode = sync_and_optab[mode];
if (icode != CODE_FOR_nothing)