diff options
author | Torbjorn Granlund <tege@gnu.org> | 1996-09-11 01:12:10 +0000 |
---|---|---|
committer | Torbjorn Granlund <tege@gnu.org> | 1996-09-11 01:12:10 +0000 |
commit | f647b9f2e5f3e995fd6ccb8fe7f8bf8c99fe777c (patch) | |
tree | 00e98e49eb3d27c4688fd210729f1d75cb490049 | |
parent | 5107b750cbdec41939cd9ef81231fb3993633dff (diff) | |
download | gcc-f647b9f2e5f3e995fd6ccb8fe7f8bf8c99fe777c.zip gcc-f647b9f2e5f3e995fd6ccb8fe7f8bf8c99fe777c.tar.gz gcc-f647b9f2e5f3e995fd6ccb8fe7f8bf8c99fe777c.tar.bz2 |
(decrement_and_branch_until_zero matcher): Fix typo.
From-SVN: r12697
-rw-r--r-- | gcc/config/i386/i386.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 3debb54..33c9ac6 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -5584,7 +5584,7 @@ if (operands[2] == constm1_rtx) output_asm_insn (AS1 (dec%L1,%1), operands); - else if (operands[1] == const1_rtx) + else if (operands[2] == const1_rtx) output_asm_insn (AS1 (inc%L1,%1), operands); else |