From: Torbjorn Granlund Date: Mon, 7 Nov 1994 22:52:16 +0000 (+0000) Subject: (one_cmplsi2): Fix typo in NOT mode. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=31a7290c8903717ae57d731ef5c437123d5fae16;p=gcc.git (one_cmplsi2): Fix typo in NOT mode. From-SVN: r8401 --- diff --git a/gcc/config/elxsi/elxsi.md b/gcc/config/elxsi/elxsi.md index eadba1db418..97da33de054 100644 --- a/gcc/config/elxsi/elxsi.md +++ b/gcc/config/elxsi/elxsi.md @@ -854,7 +854,7 @@ ;; gcc 2.1 does not widen ~si into ~di. (define_insn "one_cmplsi2" [(set (match_operand:SI 0 "register_operand" "=r") - (not:DI (match_operand:SI 1 "register_operand" "r")))] + (not:SI (match_operand:SI 1 "register_operand" "r")))] "" "not\\t%0,%1")