diff options
| author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-24 09:33:59 +0000 |
|---|---|---|
| committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-24 09:33:59 +0000 |
| commit | e2f3e7ec87a76b40e4b2b18ee95cf482e9bae0b4 (patch) | |
| tree | 2634dced5f18de05bf727c176a2ab1e32b9c63cc | |
| parent | 044e2a62965e98e39cdb4a14cf77a9bb3349e49d (diff) | |
| download | ppe42-gcc-e2f3e7ec87a76b40e4b2b18ee95cf482e9bae0b4.tar.gz ppe42-gcc-e2f3e7ec87a76b40e4b2b18ee95cf482e9bae0b4.zip | |
PR target/17093
* config/m32r.md (movsi_sda): Add SI mode specification to UNSPEC.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86474 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 16 | ||||
| -rw-r--r-- | gcc/config/m32r/m32r.md | 2 |
2 files changed, 12 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 005caa11040..e6ec76029f6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,14 @@ +2004-08-24 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com> + + PR target/17093 + * config/m32r.md (movsi_sda): Add SI mode specification to + UNSPEC. + +2004-08-24 Nick Clifton <nickc@redhat.com> + + * config/m32r/m32r.h (PREDICATE_CODES): Remove duplicate definition + of seth_add3_operand. + 2004-08-24 Nathan Sidwell <nathan@codesourcery.com> * Makefile.in (PROTO_OBJS): Add errors.o. @@ -8,11 +19,6 @@ * doc/trouble.texi (C++ misunderstandings): Fix example code. -2004-08-24 Nick Clifton <nickc@redhat.com> - - * config/m32r/m32r.h (PREDICATE_CODES): Remove duplicate defintion - of seth_add3_operand. - 2004-08-24 Andreas Tobler <a.tobler@schweiz.ch> * Makefile.in (HOOKS_H): Add dependency on MACHMODE_H. diff --git a/gcc/config/m32r/m32r.md b/gcc/config/m32r/m32r.md index 46c6a339aad..8cd2679d448 100644 --- a/gcc/config/m32r/m32r.md +++ b/gcc/config/m32r/m32r.md @@ -488,7 +488,7 @@ (define_expand "movsi_sda" [(set (match_dup 2) - (unspec [(const_int 0)] UNSPEC_LOAD_SDA_BASE)) + (unspec:SI [(const_int 0)] UNSPEC_LOAD_SDA_BASE)) (set (match_operand:SI 0 "register_operand" "") (lo_sum:SI (match_dup 2) (match_operand:SI 1 "small_data_operand" "")))] |

