Commit febc5365 by Ian Lance Taylor Committed by Ian Lance Taylor

host-darwin.c (darwin_rs6000_gt_pch_use_address): Return 1 if file was successfully mapped.

	* config/rs6000/host-darwin.c (darwin_rs6000_gt_pch_use_address):
	Return 1 if file was successfully mapped.

From-SVN: r80537
parent f701326e
2004-04-08 Ian Lance Taylor <ian@wasabisystems.com>
* config/rs6000/host-darwin.c (darwin_rs6000_gt_pch_use_address):
Return 1 if file was successfully mapped.
2004-04-08 Geoffrey Keating <geoffk@apple.com>
PR pch/13419
......
......@@ -187,10 +187,10 @@ darwin_rs6000_gt_pch_use_address (void *addr, size_t sz, int fd, size_t off)
fd, off);
/* The file might not be mmap-able. */
ret = mmap_result == (void *) MAP_FAILED;
ret = mmap_result != (void *) MAP_FAILED;
/* Sanity check for broken MAP_FIXED. */
if (!ret && mmap_result != addr)
if (ret && mmap_result != addr)
abort ();
}
......
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