cannelloni: needs dynamic library
[buildroot-gz.git] / package / gcc / 4.8.5 / 843-aarch64-vmlaq_lane_s32-typo.patch
blobafa650c8b98e9fe8b13c254814a73882231f7698
1 From 845478644ba54a6947e9b224f2e5cd342e8257a9 Mon Sep 17 00:00:00 2001
2 From: Andrew Hsieh <andrewhsieh@google.com>
3 Date: Wed, 25 Jun 2014 22:13:48 -0700
4 Subject: [PATCH] Fix a typo in vmlaq_lane_s32
6 BUG=15526898
8 Change-Id: I4e35a764d369d378808dab29beefe34d1f93249b
9 Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 ---
12 diff --git a/gcc/config/aarch64/arm_neon.h b/gcc/config/aarch64/arm_neon.h
13 index 73c7e7d..92b0119 100644
14 --- a/gcc/config/aarch64/arm_neon.h
15 +++ b/gcc/config/aarch64/arm_neon.h
16 @@ -9984,7 +9984,7 @@
17 #define vmlaq_lane_s32(a, b, c, d) \
18 __extension__ \
19 ({ \
20 - int32x4_t c_ = (c); \
21 + int32x2_t c_ = (c); \
22 int32x4_t b_ = (b); \
23 int32x4_t a_ = (a); \
24 int32x4_t result; \