neon-vld1_dupQ.c: Use types that match function prototypes.

* gcc.target/arm/neon-vld1_dupQ.c: Use types that match function
	prototypes.

From-SVN: r195248
This commit is contained in:
Janis Johnson 2013-01-16 18:48:27 +00:00 committed by Janis Johnson
parent 79f01c76e0
commit 9834289577
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2013-01-16 Janis Johnson <janisjo@codesourcery.com>
* gcc.target/arm/neon-vld1_dupQ.c: Use types that match function
prototypes.
2013-01-16 Richard Biener <rguenther@suse.de>
PR tree-optimization/55964

View file

@ -13,9 +13,9 @@ int main (void)
int64x1_t input[2] = {(int64x1_t)0x0123456776543210LL,
(int64x1_t)0x89abcdeffedcba90LL};
int64x1_t output[2] = {0, 0};
int64x2_t var = vld1q_dup_s64(input);
int64x2_t var = vld1q_dup_s64((int64_t *)input);
vst1q_s64(output, var);
vst1q_s64((int64_t *)output, var);
if (output[0] != (int64x1_t)0x0123456776543210LL)
abort();
if (output[1] != (int64x1_t)0x0123456776543210LL)