* config/rs6000/host-darwin.c (darwin_rs6000_gt_pch_use_address):
Use ret instead of result. Use addr instead of base.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79404
138bc75d-0d04-0410-961f-
82ee72b054a4
+2003-03-12 Andrew Pinski <apinski@apple.com>
+
+ * config/rs6000/host-darwin.c (darwin_rs6000_gt_pch_use_address):
+ Use ret instead of result. Use addr instead of base.
+
2004-03-12 David Edelsohn <edelsohn@gnu.org>
* doc/install.texi (*-ibm-aix*): Document assembler and achiver
|| sizeof (pch_address_space) % pagesize != 0)
abort ();
- result = (addr == pch_address_space && sz <= sizeof (pch_address_space));
- if (! result)
+ ret = (addr == pch_address_space && sz <= sizeof (pch_address_space));
+ if (! ret)
sz = 0;
/* Round the size to a whole page size. Normally this is a no-op. */
ret = mmap_result == (void *) MAP_FAILED;
/* Sanity check for broken MAP_FIXED. */
- if (ret && mmap_result != base)
+ if (ret && mmap_result != addr)
abort ();
return ret;