* boehm.cc (_Jv_BuildGCDescr): Use `1ULL'.

From-SVN: r69703
This commit is contained in:
Tom Tromey 2003-07-23 15:08:07 +00:00 committed by Tom Tromey
parent eb5abb3944
commit 20da8c21f3
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-07-23 Tom Tromey <tromey@redhat.com>
* boehm.cc (_Jv_BuildGCDescr): Use `1ULL'.
2003-07-22 Tom Tromey <tromey@redhat.com>
* boehm.cc (_Jv_BuildGCDescr): Wrote.

View File

@ -357,7 +357,7 @@ _Jv_BuildGCDescr(jclass self)
// 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();