[llvm] [ConstraintElim] Add facts implied by llvm.abs (PR #73189)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 28 02:25:50 PST 2023
================
@@ -984,32 +984,37 @@ void State::addInfoFor(BasicBlock &BB) {
continue;
}
- if (match(&I, m_Intrinsic<Intrinsic::ssub_with_overflow>())) {
+ auto *II = dyn_cast<IntrinsicInst>(&I);
+ Intrinsic::ID ID = II ? II->getIntrinsicID() : Intrinsic::not_intrinsic;
+ switch (ID) {
+ case Intrinsic::assume:
----------------
fhahn wrote:
probably best to wrap the below below in `{}`
https://github.com/llvm/llvm-project/pull/73189
More information about the llvm-commits
mailing list