349a350,353
> /** Note that unlike other accessors, this function sets *specific
> flags* (ORs them in); it does not assign its argument to the
> _flags field. Thus this method should rightly be called
> setFlags() and not just flags(). */
381,395d384
< /** Accessor function for MMAPED_IPR flag. */
< bool
< isMmapedIpr()
< {
< assert(privateFlags.isSet(VALID_PADDR));
< return _flags.isSet(MMAPED_IPR);
< }
<
< void
< setMmapedIpr(bool r)
< {
< assert(VALID_VADDR);
< _flags.set(MMAPED_IPR);
< }
<
455c444,445
< /** Accessor Function to Check Cacheability. */
---
> /** Accessor functions for flags. Note that these are for testing
> only; setting flags should be done via setFlags(). */
462a453
> bool isMmapedIpr() const { return _flags.isSet(MMAPED_IPR); }