diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/rs6000/host-darwin.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index faf7f1c..7825436 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +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 diff --git a/gcc/config/rs6000/host-darwin.c b/gcc/config/rs6000/host-darwin.c index 9f47cac..d04270c 100644 --- a/gcc/config/rs6000/host-darwin.c +++ b/gcc/config/rs6000/host-darwin.c @@ -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 (); } |
