Changeset 2040 for trunk/src/kmk/make.h


Ignore:
Timestamp:
Nov 3, 2008, 1:07:07 PM (17 years ago)
Author:
bird
Message:

Another try.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/make.h

    r2039 r2040  
    604604/* Free an item. */
    605605MY_INLINE void
    606 alloccache_free (struct alloccache *cache, void volatile *item)
     606alloccache_free (struct alloccache *cache, void *item)
    607607{
    608   struct alloccache_free_ent *f = (struct alloccache_free_ent *)item;
     608  struct alloccache_free_ent *f = (struct alloccache_free_ent *)item; /* aliasing problem :-( */
    609609#if 0 /*ndef NDEBUG*/
    610610  struct alloccache_free_ent *c;
Note: See TracChangeset for help on using the changeset viewer.