+2004-11-29 Eric Botcazou <ebotcazou@libertysurf.fr>
+
+ * link.cc (link_symbol_table): Do not use intptr_t.
+
2004-11-28 Mark Wielaard <mark@klomp.org>
* mauve-libgcj: Disable SpinnerListModel, SwingUtilities and
if (found)
{
klass->itable->addresses[index * 2] = cls;
- klass->itable->addresses[index * 2 + 1] = (void *)(intptr_t) i;
+ klass->itable->addresses[index * 2 + 1] = (void *)(unsigned long) i;
if (debug_link)
{
fprintf (stderr, " interfaces[%d] = %p (interface %s@%p : %s(%s))\n",
(const char*)signature->chars());
fprintf (stderr, " [%d] = offset %d\n",
index + 1,
- (int)(intptr_t)klass->itable->addresses[index * 2 + 1]);
+ (int)(unsigned long)klass->itable->addresses[index * 2 + 1]);
}
}