Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFixFunctionBitcasts.cpp126 Type *ExpectedRtnType = F->getFunctionType()->getReturnType(); in createWrapper() local
131 (ExpectedRtnType != RtnType)) in createWrapper()
170 Type *ExpectedRtnType = F->getFunctionType()->getReturnType(); in createWrapper() local
175 } else if (ExpectedRtnType->isVoidTy()) { in createWrapper()
178 } else if (RtnType == ExpectedRtnType) { in createWrapper()
180 } else if (CastInst::isBitOrNoopPointerCastable(ExpectedRtnType, RtnType, in createWrapper()
186 } else if (RtnType->isStructTy() || ExpectedRtnType->isStructTy()) { in createWrapper()
193 LLVM_DEBUG(dbgs() << "Expected: " << *ExpectedRtnType in createWrapper()