Commit 05e1eaeb by Jakub Jelinek Committed by Jakub Jelinek

pr82374.c (SIZE): Change from 1G to 1M to make it ilp32 friendly.

	* gcc.dg/gomp/pr82374.c (SIZE): Change from 1G to 1M to make it ilp32
	friendly.

From-SVN: r253438
parent bb61e6e3
2017-10-05 Jakub Jelinek <jakub@redhat.com>
* gcc.dg/gomp/pr82374.c (SIZE): Change from 1G to 1M to make it ilp32
friendly.
2017-10-05 Richard Biener <rguenther@suse.de> 2017-10-05 Richard Biener <rguenther@suse.de>
* gfortran.dg/graphite/id-17.f: Fix typo. * gfortran.dg/graphite/id-17.f: Fix typo.
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
/* { dg-additional-options "-mavx -mno-avx2" { target i?86-*-* x86_64-*-* } } */ /* { dg-additional-options "-mavx -mno-avx2" { target i?86-*-* x86_64-*-* } } */
/* { dg-additional-options "-mvsx" { target powerpc_vsx_ok } } */ /* { dg-additional-options "-mvsx" { target powerpc_vsx_ok } } */
#define SIZE (1024 * 1024 * 1024) #define SIZE (1024 * 1024)
float a[SIZE]; float a[SIZE];
float b[SIZE]; float b[SIZE];
......
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