Commit 20da8c21 by Tom Tromey Committed by Tom Tromey

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

From-SVN: r69703
parent eb5abb39
2003-07-23 Tom Tromey <tromey@redhat.com>
* boehm.cc (_Jv_BuildGCDescr): Use `1ULL'.
2003-07-22 Tom Tromey <tromey@redhat.com> 2003-07-22 Tom Tromey <tromey@redhat.com>
* boehm.cc (_Jv_BuildGCDescr): Wrote. * boehm.cc (_Jv_BuildGCDescr): Wrote.
......
...@@ -357,7 +357,7 @@ _Jv_BuildGCDescr(jclass self) ...@@ -357,7 +357,7 @@ _Jv_BuildGCDescr(jclass self)
// fall back to procedure marker. // fall back to procedure marker.
if (off > CHAR_BIT * sizeof (void *)) if (off > CHAR_BIT * sizeof (void *))
return (void *) (GCJ_DEFAULT_DESCR); return (void *) (GCJ_DEFAULT_DESCR);
desc |= 1 << off; desc |= 1ULL << off;
} }
field = field->getNextField(); field = field->getNextField();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment