diff options
author | Hariharan Sandanagobalane <hariharan@picochip.com> | 2010-05-26 12:20:31 +0000 |
---|---|---|
committer | Hariharan Sandanagobalane <hariharans@gcc.gnu.org> | 2010-05-26 12:20:31 +0000 |
commit | f024f85d3d72a196f4612ad97b9d422dfdbb2da5 (patch) | |
tree | d1015cd4f5146b7d5fb5350d75c6ffea4bf92604 | |
parent | e4dfaf724fb00007371cf3ff0ee86b5ec52cc558 (diff) | |
download | gcc-f024f85d3d72a196f4612ad97b9d422dfdbb2da5.zip gcc-f024f85d3d72a196f4612ad97b9d422dfdbb2da5.tar.gz gcc-f024f85d3d72a196f4612ad97b9d422dfdbb2da5.tar.bz2 |
picochip.md (movsi): Split a movsi from a const after reload.
* config/picochip/picochip.md (movsi): Split a movsi from a
const after reload.
From-SVN: r159867
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/picochip/picochip.md | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4e02230..f0c6e85 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-04-30 Hariharan Sandanagobalane <hariharan@picochip.com> + + * config/picochip/picochip.md (movsi): Split a movsi from a + const after reload. + 2010-05-26 Laurynas Biveinis <laurynas.biveinis@gmail.com> * ggc-zone.c: Update copyright year. diff --git a/gcc/config/picochip/picochip.md b/gcc/config/picochip/picochip.md index 62103506..66323dd 100644 --- a/gcc/config/picochip/picochip.md +++ b/gcc/config/picochip/picochip.md @@ -893,7 +893,7 @@ (define_split [(set (match_operand:SI 0 "register_operand" "") (match_operand:SI 1 "const_int_operand" ""))] - "" + "reload_completed" [(set (match_dup 2) (match_dup 3)) (set (match_dup 4) (match_dup 5))] "{ |