diff options
author | Roger Sayle <roger@eyesopen.com> | 2006-01-18 20:42:41 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2006-01-18 20:42:41 +0000 |
commit | 61da04bdada39d393c0ca6cd006099db7ada4ced (patch) | |
tree | 4d389ed4d0ac02670a9ede81c24971d2da27d73b /gcc/config/i386 | |
parent | c0354bf4f65ca239a247d155b87c7f02a45c9e6f (diff) | |
download | gcc-61da04bdada39d393c0ca6cd006099db7ada4ced.zip gcc-61da04bdada39d393c0ca6cd006099db7ada4ced.tar.gz gcc-61da04bdada39d393c0ca6cd006099db7ada4ced.tar.bz2 |
i386.md (shift spliter): Fix a a typo in the splitter for shifts where the source and destination...
* config/i386/i386.md (shift spliter): Fix a a typo in the splitter
for shifts where the source and destination registers are different.
From-SVN: r109912
Diffstat (limited to 'gcc/config/i386')
-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 99b3acf..146ed09 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -10569,7 +10569,7 @@ [(const_int 0)] { rtx pat, clob; - emit_move_insn (operands[1], operands[0]); + emit_move_insn (operands[0], operands[1]); pat = gen_rtx_SET (VOIDmode, operands[0], gen_rtx_ASHIFT (GET_MODE (operands[0]), operands[0], operands[2])); |