mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 19:11:19 +08:00
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:
parent
fac009a816
commit
4a5ba933e7
@ -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...
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user