]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* boehm.cc (_Jv_BuildGCDescr): Use `1ULL'.
authorTom Tromey <tromey@redhat.com>
Wed, 23 Jul 2003 15:08:07 +0000 (15:08 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Wed, 23 Jul 2003 15:08:07 +0000 (15:08 +0000)
From-SVN: r69703

libjava/ChangeLog
libjava/boehm.cc

index cf97e58d82440034b1deba0b68bcc783d9b70417..4f6ad8055f7a79b760485487dbc52e5cc9bdb2fc 100644 (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.
index 8e621594bf264a86c6ee697cc92a1a88ff2b076c..95721c7fbeb39023b6d7b29d2b45631c8c341854 100644 (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();