Lines Matching defs:SwiftErrorVal
617 void verifySwiftErrorCall(CallBase &Call, const Value *SwiftErrorVal);
618 void verifySwiftErrorValue(const Value *SwiftErrorVal);
4306 /// Check that SwiftErrorVal is used as a swifterror argument in CS.
4308 const Value *SwiftErrorVal) {
4310 if (I.value() == SwiftErrorVal) {
4314 SwiftErrorVal, Call);
4319 void Verifier::verifySwiftErrorValue(const Value *SwiftErrorVal) {
4322 for (const User *U : SwiftErrorVal->users()) {
4327 SwiftErrorVal, U);
4330 Check(StoreI->getOperand(1) == SwiftErrorVal,
4333 SwiftErrorVal, U);
4335 verifySwiftErrorCall(*const_cast<CallBase *>(Call), SwiftErrorVal);