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
/
PointerUnion.h
Age
Commit message (
Expand
)
Author
2012-12-03
Eliminate redundant bitwise operations when using a llvm/ADT/PointerUnion.
Argyrios Kyrtzidis
2012-07-13
Fixed few warnings.
Galina Kistanova
2012-03-11
Add a few missing 'template' keywords
Douglas Gregor
2012-03-06
PointerUnion::getAddrOf() does not need to be template since we can only
Argyrios Kyrtzidis
2011-08-12
Fix an obscure bug in PointerUnion that would bite PointerUnion3/4. Basically,
Chris Lattner
2011-03-07
Try fixing mingw build.
Argyrios Kyrtzidis
2011-03-07
Do a compiler check that we use one of the types from PointerUnion[N], instea...
Argyrios Kyrtzidis
2011-02-19
Allow getting the address of the value in a PointerUnion or PointerIntPair if...
Argyrios Kyrtzidis
2010-03-30
Change PointerUnionX::getFromOpaqueValue() to be declared 'static inline' ins...
Ted Kremenek
2009-11-06
Add a bunch of missing "template" keywords to disambiguate dependent template...
Douglas Gregor
2009-07-29
Fix a typo, and all of its copies
Douglas Gregor
2009-07-29
Implement PointerUnion4.
Douglas Gregor
2009-06-29
Fix three MSVC 2008 warnings that completely clutter the build output.
Sebastian Redl
2009-03-31
Allow the use of pointers to const within PointerUnion.
Douglas Gregor
2009-03-31
Stop guessing, start thinking, and make PointerUnion3::is actually be correct.
Douglas Gregor
2009-03-31
Really, really fix PointerUnion3::is
Douglas Gregor
2009-03-30
Make PointerUnion3::get work properly
Douglas Gregor
2009-03-30
update comment.
Chris Lattner
2009-03-30
add a PointerUnion3 class and generalize PointerUnion to work with
Chris Lattner
2009-03-29
add some comments, add a dyn_cast method.
Chris Lattner
2009-03-29
add helper method.
Chris Lattner
2009-03-29
Add a simple type-safe bit-mangling pointer union class. This allows
Chris Lattner