block-1.c: Require 32-bit or larger array support.
* gcc.dg/graphite/block-1.c: Require 32-bit or larger array support. * gcc.dg/graphite/block-3.c: Ditto. * gcc.dg/graphite/block-4.c: Ditto. * gcc.dg/graphite/block-5.c: Ditto. * gcc.dg/graphite/block-6.c: Ditto. * gcc.dg/graphite/interchange-0.c: Ditto. * gcc.dg/graphite/interchange-1.c: Ditto. * gcc.dg/graphite/interchange-2.c: Ditto. * gcc.dg/graphite/interchange-3.c: Ditto. * gcc.dg/graphite/interchange-4.c: Ditto. * gcc.dg/graphite/interchange-5.c: Ditto. * gcc.dg/graphite/interchange-6.c: Ditto. * gcc.dg/graphite/run-id-1.c: Ditto. * gcc.dg/graphite/scop-16.c: Ditto. * gcc.dg/graphite/scop-17.c: Ditto. * gcc.dg/graphite/scop-18.c: Ditto. * gcc.dg/graphite/scop-matmult.c: Ditto. * gcc.dg/graphite/pr40157.c: Require 32bit or larger int. * gcc.dg/graphite/id-15.c: Ditto. From-SVN: r154466
This commit is contained in:
parent
43558bcc9d
commit
04f3ccd55a
@ -1,3 +1,25 @@
|
||||
2009-11-23 Andy Hutchinson <hutchinsonandy@gcc.gnu.org>
|
||||
|
||||
* gcc.dg/graphite/block-1.c: Require 32-bit or larger array support.
|
||||
* gcc.dg/graphite/block-3.c: Ditto.
|
||||
* gcc.dg/graphite/block-4.c: Ditto.
|
||||
* gcc.dg/graphite/block-5.c: Ditto.
|
||||
* gcc.dg/graphite/block-6.c: Ditto.
|
||||
* gcc.dg/graphite/interchange-0.c: Ditto.
|
||||
* gcc.dg/graphite/interchange-1.c: Ditto.
|
||||
* gcc.dg/graphite/interchange-2.c: Ditto.
|
||||
* gcc.dg/graphite/interchange-3.c: Ditto.
|
||||
* gcc.dg/graphite/interchange-4.c: Ditto.
|
||||
* gcc.dg/graphite/interchange-5.c: Ditto.
|
||||
* gcc.dg/graphite/interchange-6.c: Ditto.
|
||||
* gcc.dg/graphite/run-id-1.c: Ditto.
|
||||
* gcc.dg/graphite/scop-16.c: Ditto.
|
||||
* gcc.dg/graphite/scop-17.c: Ditto.
|
||||
* gcc.dg/graphite/scop-18.c: Ditto.
|
||||
* gcc.dg/graphite/scop-matmult.c: Ditto.
|
||||
* gcc.dg/graphite/pr40157.c: Require 32bit or larger int.
|
||||
* gcc.dg/graphite/id-15.c: Ditto.
|
||||
|
||||
2009-11-23 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
* gnat.dg/specs/weak1.ads: New test.
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-require-effective-target size32plus } */
|
||||
|
||||
#define MAX 8192
|
||||
|
||||
void bar (void);
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-require-effective-target size32plus } */
|
||||
|
||||
#define N 24
|
||||
#define M 100
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-require-effective-target size32plus } */
|
||||
|
||||
#define N 24
|
||||
#define M 1000
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-require-effective-target size32plus } */
|
||||
|
||||
#define N 10000
|
||||
void foo (int);
|
||||
int test ()
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-require-effective-target size32plus } */
|
||||
|
||||
#define N 10000
|
||||
void foo (int);
|
||||
int test ()
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-require-effective-target int32plus } */
|
||||
|
||||
typedef long unsigned int size_t;
|
||||
extern void *memset (void *__s, int __c, size_t __n) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1)));
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-require-effective-target size32plus } */
|
||||
|
||||
int a[1000][1000];
|
||||
|
||||
int
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-require-effective-target size32plus } */
|
||||
|
||||
/* Formerly known as ltrans-1.c */
|
||||
|
||||
double u[1782225];
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-require-effective-target size32plus } */
|
||||
|
||||
/* Formerly known as ltrans-2.c */
|
||||
|
||||
double u[1782225];
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-require-effective-target size32plus } */
|
||||
|
||||
/* Formerly known as ltrans-3.c */
|
||||
|
||||
double u[1782225];
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-require-effective-target size32plus } */
|
||||
|
||||
/* Formerly known as ltrans-4.c */
|
||||
|
||||
double u[1782225];
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-require-effective-target size32plus } */
|
||||
|
||||
/* Formerly known as ltrans-5.c */
|
||||
|
||||
int foo ()
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-require-effective-target size32plus } */
|
||||
|
||||
/* Formerly known as ltrans-6.c */
|
||||
|
||||
int medium_loop_interchange(int A[100][200])
|
||||
|
@ -1,3 +1,4 @@
|
||||
/* { dg-require-effective-target int32plus } */
|
||||
/* { dg-options "-O2 -fgraphite-identity" } */
|
||||
|
||||
int buffer[256*256];
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-require-effective-target size32plus } */
|
||||
|
||||
void abort (void);
|
||||
|
||||
void foo (int N)
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-require-effective-target size32plus } */
|
||||
|
||||
#define N 10000
|
||||
void foo (int);
|
||||
int test ()
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-require-effective-target size32plus } */
|
||||
|
||||
#define N 10000
|
||||
void foo (int);
|
||||
int test ()
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-require-effective-target size32plus } */
|
||||
|
||||
#define N 24
|
||||
#define M 1000
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-require-effective-target size32plus } */
|
||||
|
||||
float A[1000][1000], B[1000][1000], C[1000][1000];
|
||||
|
||||
/* Multiply two n x n matrices A and B and store the result in C. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user