HomeSort by relevance Sort by last modified time
    Searched refs:NRetTy (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 719 Type *NRetTy = nullptr;
746 NRetTy = RetTy;
765 NRetTy = StructType::get(STy->getContext(), RetTypes, STy->isPacked());
768 NRetTy = ArrayType::get(RetTypes[0], RetTypes.size());
773 NRetTy = RetTypes.front();
776 NRetTy = Type::getVoidTy(F->getContext());
779 assert(NRetTy && "No new return type found?");
788 if (NRetTy->isVoidTy())
789 RAttrs = RAttrs.removeAttributes(NRetTy->getContext(),
791 AttributeFuncs::typeIncompatible(NRetTy));
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DeadArgumentElimination.cpp 663 Type *NRetTy = NULL;
670 NRetTy = RetTy;
703 NRetTy = StructType::get(STy->getContext(), RetTypes, STy->isPacked());
707 NRetTy = RetTypes.front();
710 NRetTy = Type::getVoidTy(F->getContext());
713 assert(NRetTy && "No new return type found?");
719 if (NRetTy->isVoidTy())
720 RAttrs &= ~Attribute::typeIncompatible(NRetTy);
722 assert((RAttrs & Attribute::typeIncompatible(NRetTy)) == 0
760 FunctionType *NFTy = FunctionType::get(NRetTy, Params, FTy->isVarArg())
    [all...]

Completed in 120 milliseconds