re PR testsuite/49222 (FAIL: gcc.dg/vect/pr49038.c (test for excess errors) on *-apple-darwin*)

PR testsuite/49222
	* gcc.dg/vect/pr49038.c: Use MAP_ANON if MAP_ANONYMOUS is not defined.

From-SVN: r174398
This commit is contained in:
Ira Rosen 2011-05-29 16:47:05 +00:00 committed by Ira Rosen
parent fac009a816
commit 4a5ba933e7
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2011-05-29 Ira Rosen <ira.rosen@linaro.org>
PR testsuite/49222
* gcc.dg/vect/pr49038.c: Use MAP_ANON if MAP_ANONYMOUS is not defined.
2011-05-29 Eric Botcazou <ebotcazou@adacore.com>
* gnat.dg/boolean_subtype.adb: Rename to...

View File

@ -6,6 +6,10 @@
#define ADDRESS 0x1122000000
#define TYPE unsigned short
#ifndef MAP_ANONYMOUS
#define MAP_ANONYMOUS MAP_ANON
#endif
void __attribute__((noinline))
foo (TYPE *__restrict a, TYPE *__restrict b)
{