mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-19 12:21:15 +08:00
* optabs.c (expand_sync_operation): Fix typo expanding nand to and.
From-SVN: r98327
This commit is contained in:
parent
5ce7999da0
commit
46c94db618
@ -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.
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user