Implement setcc for booleans. Fixes bug:

test/Regression/Transforms/ConstProp/2002-09-03-SetCC-Bools.ll

llvm-svn: 3576
This commit is contained in:
Chris Lattner 2002-09-03 20:09:49 +00:00
parent 80c0964fc9
commit 07507a4ccb
1 changed files with 4 additions and 0 deletions

View File

@ -254,6 +254,10 @@ struct EmptyRules : public TemplateRules<Constant, EmptyRules> {
//
struct BoolRules : public TemplateRules<ConstantBool, BoolRules> {
static ConstantBool *LessThan(const ConstantBool *V1, const ConstantBool *V2){
return ConstantBool::get(V1->getValue() < V2->getValue());
}
static Constant *And(const ConstantBool *V1, const ConstantBool *V2) {
return ConstantBool::get(V1->getValue() & V2->getValue());
}