Commit 5b918807 by Richard Earnshaw Committed by Richard Earnshaw

* gcc-page.c: Try MAP_ANON if we don't have MAP_ANONYMOUS.

From-SVN: r30102
parent 506f9fbf
......@@ -6,6 +6,8 @@ Wed Oct 20 10:46:41 1999 Richard Earnshaw (rearnsha@arm.com)
block records so that merge_blocks_nomove will clean up correctly.
(split_edge): Handle casesi insns.
* gcc-page.c: Try MAP_ANON if we don't have MAP_ANONYMOUS.
Tue Oct 19 23:43:50 1999 Jeffrey A Law (law@cygnus.com)
* pa.md (call, call_value): Do not emit a blockage after restoring
......
......@@ -35,6 +35,9 @@
#define MAP_FAILED -1
#endif
#if !defined (MAP_ANONYMOUS) && defined (MAP_ANON)
#define MAP_ANONYMOUS MAP_ANON
#endif
/* Stategy:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment