]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* config/spu/spu.md (dftsv, dftsv_celledp): Attach the appropriate
authorbje <bje@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 3 Aug 2007 00:32:43 +0000 (00:32 +0000)
committerbje <bje@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 3 Aug 2007 00:32:43 +0000 (00:32 +0000)
mode to unspec expressions to silence a warning from the generator
programs.

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

gcc/ChangeLog
gcc/config/spu/spu.md

index 0501ae7dc7b00c924de84d355d73c600f60ced6a..04ff2e8f50bd8f54d84ecef82ac096cc515c59c1 100644 (file)
@@ -1,3 +1,9 @@
+2007-08-03  Ben Elliston  <bje@au.ibm.com>
+
+       * config/spu/spu.md (dftsv, dftsv_celledp): Attach the appropriate
+       mode to unspec expressions to silence a warning from the generator
+       programs.
+       
 2007-08-02  Steve Ellcey  <sje@cup.hp.com>
 
        * config/ia64/constraints.md ("U"): Make constraint vector only.
index a7946edfd001d9f6ae9d271e63afb07a01934c22..4f2c41a7ec12d2536ea775135cd3261b455c2e28 100644 (file)
@@ -3025,16 +3025,18 @@ selb\t%0,%4,%0,%3"
 ;; dftsv
 (define_insn "dftsv_celledp"
   [(set (match_operand:V2DI 0 "spu_reg_operand" "=r")
-        (unspec [(match_operand:V2DF 1 "spu_reg_operand"  "r")
-                 (match_operand:SI   2 "const_int_operand" "i")] UNSPEC_DFTSV))]
+        (unspec:V2DI [(match_operand:V2DF 1 "spu_reg_operand"  "r")
+                     (match_operand:SI   2 "const_int_operand" "i")]
+                     UNSPEC_DFTSV))]
   "spu_arch == PROCESSOR_CELLEDP"
   "dftsv\t%0,%1,%2"
   [(set_attr "type" "fpd")])
 
 (define_expand "dftsv"
   [(set (match_operand:V2DI 0 "spu_reg_operand" "=r")
-        (unspec [(match_operand:V2DF 1 "spu_reg_operand" "r")
-                 (match_operand:SI   2 "const_int_operand" "i")] UNSPEC_DFTSV))]
+        (unspec:V2DI [(match_operand:V2DF 1 "spu_reg_operand" "r")
+                     (match_operand:SI   2 "const_int_operand" "i")]
+                     UNSPEC_DFTSV))]
   ""
 {
   if(spu_arch == PROCESSOR_CELL)