summaryrefslogtreecommitdiff
path: root/include/llvm/Support/ConstantFolder.h
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2011-02-07 09:21:52 +0000
committerDuncan Sands <baldrick@free.fr>2011-02-07 09:21:52 +0000
commit1dbf0df996bba398a70abccc714b1a9652330014 (patch)
treee792d57266d40f929d2c7b3935dd110103f5c3f4 /include/llvm/Support/ConstantFolder.h
parentcf9efa59668a0c0fe4b2d856f16fc322cdcd8e07 (diff)
downloadllvm-1dbf0df996bba398a70abccc714b1a9652330014.tar.gz
llvm-1dbf0df996bba398a70abccc714b1a9652330014.tar.bz2
llvm-1dbf0df996bba398a70abccc714b1a9652330014.tar.xz
Add IRBuilder methods for creating an exact udiv, like for exact sdiv.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125002 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/ConstantFolder.h')
-rw-r--r--include/llvm/Support/ConstantFolder.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Support/ConstantFolder.h b/include/llvm/Support/ConstantFolder.h
index ea6c5fd82a..93adb3a403 100644
--- a/include/llvm/Support/ConstantFolder.h
+++ b/include/llvm/Support/ConstantFolder.h
@@ -72,6 +72,9 @@ public:
Constant *CreateUDiv(Constant *LHS, Constant *RHS) const {
return ConstantExpr::getUDiv(LHS, RHS);
}
+ Constant *CreateExactUDiv(Constant *LHS, Constant *RHS) const {
+ return ConstantExpr::getExactUDiv(LHS, RHS);
+ }
Constant *CreateSDiv(Constant *LHS, Constant *RHS) const {
return ConstantExpr::getSDiv(LHS, RHS);
}