test/Regression/Transforms/ConstProp/2002-09-03-SetCC-Bools.ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3576
91177308-0d34-0410-b5e6-
96231b3b80d8
//
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());
}