Lines Matching defs:SwiftErrorVal
609 void verifySwiftErrorCall(CallBase &Call, const Value *SwiftErrorVal);
610 void verifySwiftErrorValue(const Value *SwiftErrorVal);
4247 /// Check that SwiftErrorVal is used as a swifterror argument in CS.
4249 const Value *SwiftErrorVal) {
4251 if (I.value() == SwiftErrorVal) {
4255 SwiftErrorVal, Call);
4260 void Verifier::verifySwiftErrorValue(const Value *SwiftErrorVal) {
4263 for (const User *U : SwiftErrorVal->users()) {
4268 SwiftErrorVal, U);
4271 Check(StoreI->getOperand(1) == SwiftErrorVal,
4274 SwiftErrorVal, U);
4276 verifySwiftErrorCall(*const_cast<CallBase *>(Call), SwiftErrorVal);