index
:
emscripten-fastcomp
master
LLVM with the emscripten fastcomp javascript backend
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
include
/
llvm
/
ADT
/
SparseBitVector.h
Age
Commit message (
Expand
)
Author
2009-09-06
Public and private corrections, warned about by icc (#304).
Duncan Sands
2009-09-05
Delete unused #include.
Benjamin Kramer
2009-07-25
Add a missing ilist_node.h #include to SparseBitVector, and add a very short
Jeffrey Yasskin
2009-07-24
Move to raw_ostream.
Daniel Dunbar
2009-05-12
Use struct instead of class to make MCVS compile.
Bill Wendling
2009-05-11
Shrink wrapping in PEI:
John Mosby
2009-04-01
Use CHAR_BIT instead of hard-coding 8 in several places where it
Dan Gohman
2009-03-21
add some inline methods for infix operators on sparse vectors,
Chris Lattner
2009-01-09
Removed trailing whitespace.
Misha Brukman
2009-01-05
Tidy up #includes, deleting a bunch of unnecessary #includes.
Dan Gohman
2008-07-28
Fold the useful features of alist and alist_node into ilist, and
Dan Gohman
2008-05-29
For PR1338: rename include/llvm/ADT/ilist and friends to end with ".h"
Anton Korobeynikov
2008-04-07
Add operator= implementations to SparseBitVector, allowing it to be used in G...
Owen Anderson
2008-03-30
Fix "Control reaches the end of non-void function" warnings,
Chris Lattner
2008-03-18
Dial down gcc's warnings: don't use 0UL when 0U suffices (and when the
Scott Michel
2007-12-29
Don't attribute in file headers anymore. See llvmdev for the
Chris Lattner
2007-11-15
Fix bugs in iterator invalidation
Daniel Berlin
2007-11-13
Fixed a strange construct. Please review.
Hartmut Kaiser
2007-10-07
Some more problems noticed by Curtis
Daniel Berlin
2007-10-05
Fix intersectWithComplement bug noticed by Curtis Dunham
Daniel Berlin
2007-10-04
Fix the previous bug a slightly different way (by modifying how find_next works)
Daniel Berlin
2007-10-04
Fix off by one error in iterator
Daniel Berlin
2007-10-04
It helps a lot when you check for the end of your list before randomly
Daniel Berlin
2007-10-04
Make SparseBitVector::set actually work properly when sets are not in ascendi...
Daniel Berlin
2007-09-26
Fix small bug in operator== for iterators
Daniel Berlin
2007-09-24
Comment fixups
Daniel Berlin
2007-09-24
Implement offline variable substitution in order to reduce memory
Daniel Berlin
2007-09-17
That's what i get for using carbon emacs in a terminal
Daniel Berlin
2007-09-17
Fix iterator so it doesn't sometimes report bits that aren't in the bitmap
Daniel Berlin
2007-09-16
Fix bug in andersen's related to test_and_set.
Daniel Berlin
2007-09-16
Fix a few bugs related to zero'ing of elements
Daniel Berlin
2007-09-11
Move dump out of class, use "\n" instead of endl
Daniel Berlin
2007-09-11
Convert to use ilist and non-pointer lists for extra goodness
Daniel Berlin
2007-09-11
Fix bugs with &=, intersect with complement. Add three argument version of in...
Daniel Berlin
2007-09-11
Add remaining functions necessary for andersen's
Daniel Berlin
2007-09-09
Add SparseBitVector implementation
Daniel Berlin