We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5458bb commit 6e0afb5Copy full SHA for 6e0afb5
clang/utils/TableGen/MveEmitter.cpp
@@ -739,15 +739,15 @@ class IRIntrinsicResult : public Result {
739
"Intrinsic::ID", "Intrinsic::" + IntrinsicID);
740
OS << "Builder.CreateCall(CGM.getIntrinsic(" << IntNo;
741
if (!ParamTypes.empty()) {
742
- OS << ", llvm::SmallVector<llvm::Type *, " << ParamTypes.size() << "> {";
+ OS << ", {";
743
const char *Sep = "";
744
for (auto T : ParamTypes) {
745
OS << Sep << ParamAlloc.allocParam("llvm::Type *", T->llvmName());
746
Sep = ", ";
747
}
748
OS << "}";
749
750
- OS << "), llvm::SmallVector<Value *, " << Args.size() << "> {";
+ OS << "), {";
751
752
for (auto Arg : Args) {
753
OS << Sep << Arg->asValue();
0 commit comments