OSDN Git Service

* config/sparc/sparc.md (save_register_windowdi): Add missing mode.
authorebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 4 Jan 2005 19:03:45 +0000 (19:03 +0000)
committerebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 4 Jan 2005 19:03:45 +0000 (19:03 +0000)
(save_register_windowsi): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@92902 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/sparc/sparc.md

index 8cd20f8..3cfaae7 100644 (file)
@@ -1,3 +1,8 @@
+2005-01-04  Eric Botcazou  <ebotcazou@libertysurf.fr>
+
+       * config/sparc/sparc.md (save_register_windowdi): Add missing mode.
+       (save_register_windowsi): Likewise.
+
 2005-01-04  Richard Henderson  <rth@redhat.com>
 
        * tree-mudflap.c (mf_varname_tree): Fix thinko setting declname.
index 44879c0..a8851f0 100644 (file)
 
 (define_insn "save_register_windowdi"
   [(set (reg:DI 30) (reg:DI 14))
-   (set (reg:DI 14) (unspec_volatile [(reg:DI 14)
-                                     (match_operand:DI 0 "arith_operand" "rI")]
-                                    UNSPECV_SAVEW))
+   (set (reg:DI 14) (unspec_volatile:DI [(reg:DI 14)
+                                        (match_operand:DI 0 "arith_operand" "rI")]
+                                       UNSPECV_SAVEW))
    (set (reg:DI 31) (reg:DI 15))]
   "TARGET_ARCH64"
   "save\t%%sp, %0, %%sp"
 
 (define_insn "save_register_windowsi"
   [(set (reg:SI 30) (reg:SI 14))
-   (set (reg:SI 14) (unspec_volatile [(reg:SI 14)
-                                     (match_operand:SI 0 "arith_operand" "rI")]
-                                    UNSPECV_SAVEW))
+   (set (reg:SI 14) (unspec_volatile:SI [(reg:SI 14)
+                                        (match_operand:SI 0 "arith_operand" "rI")]
+                                       UNSPECV_SAVEW))
    (set (reg:SI 31) (reg:SI 15))]
   "!TARGET_ARCH64"
   "save\t%%sp, %0, %%sp"