* tools/gen-apply.c: gen-apply fix for ia64.
+ * jit/jit-alloc.c (jit_flush_exec): warning fix for ia64.
+
2004-06-06 Miroslaw Dobrzanski-Neumann <mne@mosaic-ag.com>
* jit/jit-alloc.c (jit_flush_exec): flush cache lines properly
#define CLSIZE 32
register unsigned char *p = ROUND_BEG_PTR (ptr);
register unsigned char *end = ROUND_END_PTR (p + size);
- while(ptr < end)
+ while(p < end)
{
- asm volatile("fc %0" :: "r"(ptr));
- ptr += CLSIZE;
+ asm volatile("fc %0" :: "r"(p));
+ p += CLSIZE;
}
asm volatile(";;sync.i;;srlz.i;;");
#endif