]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
arm_neon.h (vqdmulh_n_s16): Change the last operand's constraint.
authorGuozhi Wei <carrot@google.com>
Wed, 28 May 2014 18:34:57 +0000 (18:34 +0000)
committerWei Guozhi <carrot@gcc.gnu.org>
Wed, 28 May 2014 18:34:57 +0000 (18:34 +0000)
* config/aarch64/arm_neon.h (vqdmulh_n_s16): Change the last operand's
constraint.
(vqdmulhq_n_s16): Likewise.

From-SVN: r211029

gcc/ChangeLog
gcc/config/aarch64/arm_neon.h

index a6df5af7e15510022decffd935bf2148438601d8..8d9a352e949aea9e3a46fd081c616879212c4931 100644 (file)
@@ -1,3 +1,10 @@
+2014-05-28  Guozhi Wei  <carrot@google.com>
+
+       PR target/61202
+       * config/aarch64/arm_neon.h (vqdmulh_n_s16): Change the last operand's
+       constraint.
+       (vqdmulhq_n_s16): Likewise.
+
 2014-05-28  Eric Botcazou  <ebotcazou@adacore.com>
 
        Backport from mainline
index d16711d6e923d152d633195a2c03f712b0db021f..385e5c616009e1d986ae0b5b910bd43db008056d 100644 (file)
@@ -13815,7 +13815,7 @@ vqdmulh_n_s16 (int16x4_t a, int16_t b)
   int16x4_t result;
   __asm__ ("sqdmulh %0.4h,%1.4h,%2.h[0]"
            : "=w"(result)
-           : "w"(a), "w"(b)
+           : "w"(a), "x"(b)
            : /* No clobbers */);
   return result;
 }
@@ -13837,7 +13837,7 @@ vqdmulhq_n_s16 (int16x8_t a, int16_t b)
   int16x8_t result;
   __asm__ ("sqdmulh %0.8h,%1.8h,%2.h[0]"
            : "=w"(result)
-           : "w"(a), "w"(b)
+           : "w"(a), "x"(b)
            : /* No clobbers */);
   return result;
 }