diff options
author | James Van Artsdalen <jrv@gnu.org> | 1993-01-25 12:09:21 +0000 |
---|---|---|
committer | James Van Artsdalen <jrv@gnu.org> | 1993-01-25 12:09:21 +0000 |
commit | b2f1f92b17a157d60b9607b2d2d78cadd4f6a61e (patch) | |
tree | f48645078673f1d366709afe189bfd4a64f2441d | |
parent | e19a77e63b5b2004eb8bd83cfecc87832149ef52 (diff) | |
download | gcc-b2f1f92b17a157d60b9607b2d2d78cadd4f6a61e.zip gcc-b2f1f92b17a157d60b9607b2d2d78cadd4f6a61e.tar.gz gcc-b2f1f92b17a157d60b9607b2d2d78cadd4f6a61e.tar.bz2 |
(extendsidi2): Fix typo in regno.
From-SVN: r3326
-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 9148d9e..94b6707 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -1087,7 +1087,7 @@ if (REGNO (operands[0]) == 0) return \"clq\"; - operands[0] = gen_rtx (REG, SImode, REGNO (operands[0])); + operands[1] = gen_rtx (REG, SImode, REGNO (operands[0]) + 1); output_asm_insn (AS2 (mov%L0,%0,%1), operands); operands[0] = GEN_INT (31); |