Commit 98342895 by Janis Johnson Committed by Janis Johnson

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
parent 79f01c76
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> 2013-01-16 Richard Biener <rguenther@suse.de>
PR tree-optimization/55964 PR tree-optimization/55964
......
...@@ -13,9 +13,9 @@ int main (void) ...@@ -13,9 +13,9 @@ int main (void)
int64x1_t input[2] = {(int64x1_t)0x0123456776543210LL, int64x1_t input[2] = {(int64x1_t)0x0123456776543210LL,
(int64x1_t)0x89abcdeffedcba90LL}; (int64x1_t)0x89abcdeffedcba90LL};
int64x1_t output[2] = {0, 0}; 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) if (output[0] != (int64x1_t)0x0123456776543210LL)
abort(); abort();
if (output[1] != (int64x1_t)0x0123456776543210LL) if (output[1] != (int64x1_t)0x0123456776543210LL)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment