index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
GCMetadata.cpp
Age
Commit message (
Expand
)
Author
2012-01-10
Add 'llvm_unreachable' to passify GCC's understanding of the constraints
Chandler Carruth
2012-01-10
Remove unnecessary default cases in switches that cover all enum values.
David Blaikie
2011-11-15
Remove all remaining uses of Value::getNameStr().
Benjamin Kramer
2010-10-19
Get rid of static constructors for pass registration. Instead, every pass ex...
Owen Anderson
2010-10-07
Now with fewer extraneous semicolons!
Owen Anderson
2010-09-04
zap dead code.
Chris Lattner
2010-08-06
Reapply r110396, with fixes to appease the Linux buildbot gods.
Owen Anderson
2010-08-06
Revert r110396 to fix buildbots.
Owen Anderson
2010-08-05
Don't use PassInfo* as a type identifier for passes. Instead, use the addres...
Owen Anderson
2010-07-21
Fix batch of converting RegisterPass<> to INTIALIZE_PASS().
Owen Anderson
2010-03-14
switch GC_LABEL to use an MCSymbol operand instead of a label ID operand.
Chris Lattner
2010-01-04
Change errs() to dbgs().
David Greene
2009-10-25
Remove includes of Support/Compiler.h that are no longer needed after the
Nick Lewycky
2009-10-25
Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.
Nick Lewycky
2009-08-23
Change Pass::print to take a raw ostream instead of std::ostream,
Chris Lattner
2009-08-23
remove std::ostream versions of printing stuff for MBB and MF,
Chris Lattner
2009-07-26
Remove Value::getName{Start,End}, the last of the old Name APIs.
Daniel Dunbar
2009-07-23
Convert StringMap to using StringRef for its APIs.
Daniel Dunbar
2009-07-14
llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.
Torok Edwin
2009-07-11
assert(0) -> LLVM_UNREACHABLE.
Torok Edwin
2009-07-11
Convert more assert(0)+abort() -> LLVM_UNREACHABLE,
Torok Edwin
2009-02-18
Eliminate several more unnecessary intptr_t casts.
Dan Gohman
2009-01-28
Rename getAnalysisToUpdate to getAnalysisIfAvailable.
Duncan Sands
2008-09-04
Tidy up several unbeseeming casts from pointer to intptr_t.
Dan Gohman
2008-08-17
Rename some GC classes so that their roll will hopefully be clearer.
Gordon Henriksen
2008-08-17
Don't instantiate GC metadata for declarations.
Gordon Henriksen
2008-08-17
Factor GC metadata table assembly generation out of Collector in preparation ...
Gordon Henriksen