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
/
Transforms
/
Scalar
/
CondPropagate.cpp
Age
Commit message (
Expand
)
Author
2008-05-13
Clean up the use of static and anonymous namespaces. This turned up
Dan Gohman
2007-12-29
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-08-02
Fix PR1575 and test/Transforms/CondProp/2007-08-01-InvalidRead.ll
Chris Lattner
2007-07-26
Fix thinko. Update return status appropriately.
Devang Patel
2007-05-06
Fix typo in comment.
Nick Lewycky
2007-05-03
Drop 'const'
Devang Patel
2007-05-02
Use 'static const char' instead of 'static const int'.
Devang Patel
2007-05-01
Do not use typeinfo to identify pass in pass manager.
Devang Patel
2007-03-02
Prefer non-virtual calls to ConstantInt::isZero over virtual calls to
Reid Spencer
2007-03-01
Although probably not necessary, guard against a potential assertion by
Reid Spencer
2007-02-05
Apply the VISIBILITY_HIDDEN field to the remaining anonymous classes in
Reid Spencer
2007-01-12
eliminate redundant check
Chris Lattner
2007-01-12
Implement review feedback for the ConstantBool->ConstantInt merge. Chris
Reid Spencer
2007-01-11
Rename BoolTy as Int1Ty. Patch by Sheng Zhou.
Reid Spencer
2007-01-11
For PR1043:
Zhou Sheng
2006-12-19
Switch over Transforms/Scalar to use the STATISTIC macro. For each statistic
Chris Lattner
2006-12-06
Detemplatize the Statistic class. The only type it is instantiated with
Chris Lattner
2006-11-26
Removed #include <iostream> and replaced with llvm_* streams.
Bill Wendling
2006-11-01
There can be more than one PHINode at the start of the block.
Devang Patel
2006-11-01
Handle PHINode with only one incoming value.
Devang Patel
2006-08-27
eliminate RegisterOpt. It does the same thing as RegisterPass.
Chris Lattner
2006-08-14
Handle single-entry PHI nodes correctly. This fixes PR877 and
Chris Lattner
2005-08-04
Fix a fixme in CondPropagate.cpp by moving a PhiNode optimization into
Nate Begeman
2005-04-21
Remove trailing whitespace
Misha Brukman
2005-04-18
silence a bogus warning
Chris Lattner
2005-04-15
a new simple pass, which will be extended to be more useful in the future.
Chris Lattner