Searched refs:ExpectedRtnType (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFixFunctionBitcasts.cpp135 Type *ExpectedRtnType = F->getFunctionType()->getReturnType(); local
140 (ExpectedRtnType != RtnType))
179 Type *ExpectedRtnType = F->getFunctionType()->getReturnType(); local
184 } else if (ExpectedRtnType->isVoidTy()) {
187 } else if (RtnType == ExpectedRtnType) {
189 } else if (CastInst::isBitOrNoopPointerCastable(ExpectedRtnType, RtnType,
195 } else if (RtnType->isStructTy() || ExpectedRtnType->isStructTy()) {
202 LLVM_DEBUG(dbgs() << "Expected: " << *ExpectedRtnType

Completed in 103 milliseconds