reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp
  182     if (RtnType->isVoidTy()) {
  185       LLVM_DEBUG(dbgs() << "Creating dummy return: " << *RtnType << "\n");
  186       ReturnInst::Create(M->getContext(), UndefValue::get(RtnType), BB);
  187     } else if (RtnType == ExpectedRtnType) {
  189     } else if (CastInst::isBitOrNoopPointerCastable(ExpectedRtnType, RtnType,
  192           CastInst::CreateBitOrPointerCast(Call, RtnType, "cast");
  195     } else if (RtnType->isStructTy() || ExpectedRtnType->isStructTy()) {
  203                         << " Got: " << *RtnType << "\n");