diff options
Diffstat (limited to 'llvm/lib/VMCore/ConstantHandling.cpp')
| -rw-r--r-- | llvm/lib/VMCore/ConstantHandling.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/llvm/lib/VMCore/ConstantHandling.cpp b/llvm/lib/VMCore/ConstantHandling.cpp index 5115ede9a1f..185468e8786 100644 --- a/llvm/lib/VMCore/ConstantHandling.cpp +++ b/llvm/lib/VMCore/ConstantHandling.cpp @@ -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());    } | 

