diff options
Diffstat (limited to 'llvm/lib/Analysis/ValueTracking.cpp')
-rw-r--r-- | llvm/lib/Analysis/ValueTracking.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/llvm/lib/Analysis/ValueTracking.cpp b/llvm/lib/Analysis/ValueTracking.cpp index 2a49a10..e4454c4 100644 --- a/llvm/lib/Analysis/ValueTracking.cpp +++ b/llvm/lib/Analysis/ValueTracking.cpp @@ -8175,14 +8175,6 @@ static bool handleGuaranteedWellDefinedOps(const Instruction *I, return false; } -void llvm::getGuaranteedWellDefinedOps( - const Instruction *I, SmallVectorImpl<const Value *> &Operands) { - handleGuaranteedWellDefinedOps(I, [&](const Value *V) { - Operands.push_back(V); - return false; - }); -} - /// Enumerates all operands of \p I that are guaranteed to not be poison. template <typename CallableT> static bool handleGuaranteedNonPoisonOps(const Instruction *I, |