aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8
diff options
context:
space:
mode:
authorAndrew Hsieh <andrewhsieh@google.com>2014-06-25 22:13:48 -0700
committerAndrew Hsieh <andrewhsieh@google.com>2014-06-25 22:13:48 -0700
commit845478644ba54a6947e9b224f2e5cd342e8257a9 (patch)
tree17d0b0fc44493d47370343d575a665563f822d47 /gcc-4.8
parent1610db7b1892fe4da05cf4b0f64d9653978507d8 (diff)
downloadtoolchain_gcc-845478644ba54a6947e9b224f2e5cd342e8257a9.tar.gz
toolchain_gcc-845478644ba54a6947e9b224f2e5cd342e8257a9.tar.bz2
toolchain_gcc-845478644ba54a6947e9b224f2e5cd342e8257a9.zip
Fix a typo in vmlaq_lane_s32
BUG=15526898 Change-Id: I4e35a764d369d378808dab29beefe34d1f93249b
Diffstat (limited to 'gcc-4.8')
-rw-r--r--gcc-4.8/gcc/config/aarch64/arm_neon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc-4.8/gcc/config/aarch64/arm_neon.h b/gcc-4.8/gcc/config/aarch64/arm_neon.h
index 73c7e7d63..92b011901 100644
--- a/gcc-4.8/gcc/config/aarch64/arm_neon.h
+++ b/gcc-4.8/gcc/config/aarch64/arm_neon.h
@@ -9984,7 +9984,7 @@ vmlal_u32 (uint64x2_t a, uint32x2_t b, uint32x2_t c)
#define vmlaq_lane_s32(a, b, c, d) \
__extension__ \
({ \
- int32x4_t c_ = (c); \
+ int32x2_t c_ = (c); \
int32x4_t b_ = (b); \
int32x4_t a_ = (a); \
int32x4_t result; \