pr25990.c: Use __SIZE_TYPE__ instead of unsigned int in size_t typedef.

* gcc.dg/gomp/pr25990.c: Use __SIZE_TYPE__ instead of unsigned int
	in size_t typedef.

From-SVN: r110609
This commit is contained in:
Jakub Jelinek 2006-02-05 11:02:55 +01:00 committed by Jakub Jelinek
parent 7235a4d415
commit 41441e2545
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-02-05 Jakub Jelinek <jakub@redhat.com>
* gcc.dg/gomp/pr25990.c: Use __SIZE_TYPE__ instead of unsigned int
in size_t typedef.
2006-02-05 Gabriel Dos Reis <gdr@integrable-solutions.net>
* g++.dg/charset/extern2.cc (foo): Declare as of type cost char*.

View file

@ -1,7 +1,7 @@
/* { dg-do compile } */
/* { dg-options "-fopenmp -O2 -std=c99" } */
typedef unsigned int size_t;
typedef __SIZE_TYPE__ size_t;
typedef struct {
int _flags;