search for: 235adca

Displaying 1 result from an estimated 1 matches for "235adca".

Did you mean: 2351adc
2012 Dec 10
3
[LLVMdev] [PATCH] Teaching ScalarEvolution to handle IV=add(zext(trunc(IV)), Step)
...larEvolution/2012-11-30-AddOfAnd.ll | 125 ++++++++++++++++++++ 3 files changed, 188 insertions(+), 10 deletions(-) create mode 100644 test/Analysis/ScalarEvolution/2012-11-30-AddOfAnd.ll diff --git a/include/llvm/Analysis/ScalarEvolution.h b/include/llvm/Analysis/ScalarEvolution.h index 235adca..79e545d 100644 --- a/include/llvm/Analysis/ScalarEvolution.h +++ b/include/llvm/Analysis/ScalarEvolution.h @@ -654,6 +654,10 @@ namespace llvm { const SCEV *getMinusSCEV(const SCEV *LHS, const SCEV *RHS, SCEV::NoWrapFlags Flags = SCEV::FlagAnyWrap); + /// Re...