2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20001017-1.c
blobf55886f4acd34e7c4d8be7581a0c25b979a991b7
2 void bug (double *Cref, char transb, int m, int n, int k,
3 double a, double *A, int fdA, double *B, int fdB,
4 double b, double *C, int fdC)
6 if (C != Cref) abort ();
9 int main (void)
11 double A[1], B[1], C[1];
13 bug (C, 'B', 1, 2, 3, 4.0, A, 5, B, 6, 7.0, C, 8);
15 return 0;