[AArch64][test] Mark variable as volatile in vsqrt_f64 test

* gcc.target/aarch64/simd/vsqrt_f64_1.c: Mark variable volatile.

From-SVN: r218117
This commit is contained in:
Kyrylo Tkachov 2014-11-27 10:02:19 +00:00 committed by Kyrylo Tkachov
parent ff7340933e
commit 687a5d7c39
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-11-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* gcc.target/aarch64/simd/vsqrt_f64_1.c: Mark variable volatile.
2014-11-27 Richard Biener <rguenther@suse.de>
PR tree-optimization/64083

View File

@ -11,7 +11,7 @@ extern void abort (void);
int
main (void)
{
float64x1_t in = vcreate_f64(0x3febd3e560634d7bULL);
volatile float64x1_t in = vcreate_f64(0x3febd3e560634d7bULL);
float64x1_t result = vsqrt_f64 (in);
float64_t expected = 0.9325321502142351;