]> git.saurik.com Git - bison.git/blobdiff - lib/lbitset.c
maint: run "make update-copyright".
[bison.git] / lib / lbitset.c
index 81e934e6db0ebe26239cd825badfc568ef83dd99..7d204f0e55e0ad721187d0d1b5fea5ed15a715e9 100644 (file)
@@ -1,6 +1,8 @@
 /* Functions to support link list bitsets.
-   Copyright (C) 2002, 2003, 2004, 2006, 2009 Free Software Foundation,
+
+   Copyright (C) 2002-2004, 2006, 2009-2012 Free Software Foundation,
    Inc.
+
    Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
 
    This program is free software: you can redistribute it and/or modify
@@ -934,17 +936,12 @@ lbitset_ones (bitset dst)
 static void
 lbitset_not (bitset dst, bitset src)
 {
-  lbitset_elt *elt;
   lbitset_elt *selt;
   lbitset_elt *delt;
   bitset_windex i;
   unsigned int j;
   bitset_windex windex;
 
-  /* This is another unfriendly operation for a linked list
-     bitset!  */
-  elt = LBITSET_TAIL (dst);
-
   windex = (BITSET_SIZE_ (dst) + BITSET_WORD_BITS - 1) / BITSET_WORD_BITS;
 
   for (i = 0; i < windex; i += LBITSET_ELT_WORDS)