Patch: FYI: fixlet for last patch
Tom Tromey
tromey@redhat.com
Wed Jul 23 14:59:00 GMT 2003
I'm checking this in on the trunk.
Jeff Sturm pointed out to me that this is needed.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
* boehm.cc (_Jv_BuildGCDescr): Use `1ULL'.
Index: boehm.cc
===================================================================
RCS file: /cvs/gcc/gcc/libjava/boehm.cc,v
retrieving revision 1.38
diff -u -r1.38 boehm.cc
--- boehm.cc 23 Jul 2003 09:53:53 -0000 1.38
+++ boehm.cc 23 Jul 2003 14:47:20 -0000
@@ -357,7 +357,7 @@
// fall back to procedure marker.
if (off > CHAR_BIT * sizeof (void *))
return (void *) (GCJ_DEFAULT_DESCR);
- desc |= 1 << off;
+ desc |= 1ULL << off;
}
field = field->getNextField();
More information about the Java-patches
mailing list