mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-26 21:33:59 +08:00
* boehm.cc (_Jv_BuildGCDescr): Use `1ULL'.
From-SVN: r69703
This commit is contained in:
parent
eb5abb3944
commit
20da8c21f3
@ -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.
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user