aboutsummaryrefslogtreecommitdiff
path: root/polly/include
diff options
context:
space:
mode:
authorKeno Fischer <keno@alumni.harvard.edu>2019-05-08 10:36:04 +0000
committerKeno Fischer <keno@alumni.harvard.edu>2019-05-08 10:36:04 +0000
commitaa1b6f1cfb35576bf5468e3d5d558ac7ee34dc88 (patch)
tree4fbc23308fb641be8d930c9600679f4ee4250a7a /polly/include
parent69b8b17945f0892e68f3e0ca46d00b2c50966114 (diff)
downloadllvm-project-aa1b6f1cfb35576bf5468e3d5d558ac7ee34dc88.tar.gz
[polly][SCEV] Expand SCEV matcher cases for new smin/umin ops
These were added in rL360159, but I neglected to update polly at the same time. llvm-svn: 360238
Diffstat (limited to 'polly/include')
-rw-r--r--polly/include/polly/Support/SCEVAffinator.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/polly/include/polly/Support/SCEVAffinator.h b/polly/include/polly/Support/SCEVAffinator.h
index 4aad9a6e679e..39a25d4001df 100644
--- a/polly/include/polly/Support/SCEVAffinator.h
+++ b/polly/include/polly/Support/SCEVAffinator.h
@@ -103,7 +103,9 @@ private:
PWACtx visitUDivExpr(const llvm::SCEVUDivExpr *E);
PWACtx visitAddRecExpr(const llvm::SCEVAddRecExpr *E);
PWACtx visitSMaxExpr(const llvm::SCEVSMaxExpr *E);
+ PWACtx visitSMinExpr(const llvm::SCEVSMinExpr *E);
PWACtx visitUMaxExpr(const llvm::SCEVUMaxExpr *E);
+ PWACtx visitUMinExpr(const llvm::SCEVUMinExpr *E);
PWACtx visitUnknown(const llvm::SCEVUnknown *E);
PWACtx visitSDivInstruction(llvm::Instruction *SDiv);
PWACtx visitSRemInstruction(llvm::Instruction *SRem);