kito-cheng updated this revision to Diff 430391.
kito-cheng added a comment.
Changes:
- clang-format has applied on unexpected part, remove that.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D125893/new/
https://reviews.llvm.org/D125893
Files:
clang/include/clang/Support/RISCVVIntrinsicUtils.h
clang/lib/Support/RISCVVIntrinsicUtils.cpp
Index: clang/lib/Support/RISCVVIntrinsicUtils.cpp
===================================================================
--- clang/lib/Support/RISCVVIntrinsicUtils.cpp
+++ clang/lib/Support/RISCVVIntrinsicUtils.cpp
@@ -928,7 +928,7 @@
std::string RVVIntrinsic::getSuffixStr(
BasicType Type, int Log2LMUL,
- const llvm::SmallVector<PrototypeDescriptor> &PrototypeDescriptors) {
+ const llvm::ArrayRef<PrototypeDescriptor> &PrototypeDescriptors) {
SmallVector<std::string> SuffixStrs;
for (auto PD : PrototypeDescriptors) {
auto T = RVVType::computeType(Type, Log2LMUL, PD);
Index: clang/include/clang/Support/RISCVVIntrinsicUtils.h
===================================================================
--- clang/include/clang/Support/RISCVVIntrinsicUtils.h
+++ clang/include/clang/Support/RISCVVIntrinsicUtils.h
@@ -341,9 +341,9 @@
// Return the type string for a BUILTIN() macro in Builtins.def.
std::string getBuiltinTypeStr() const;
- static std::string getSuffixStr(
- BasicType Type, int Log2LMUL,
- const llvm::SmallVector<PrototypeDescriptor> &PrototypeDescriptors);
+ static std::string
+ getSuffixStr(BasicType Type, int Log2LMUL,
+ const llvm::ArrayRef<PrototypeDescriptor>
&PrototypeDescriptors);
};
} // end namespace RISCV
Index: clang/lib/Support/RISCVVIntrinsicUtils.cpp
===================================================================
--- clang/lib/Support/RISCVVIntrinsicUtils.cpp
+++ clang/lib/Support/RISCVVIntrinsicUtils.cpp
@@ -928,7 +928,7 @@
std::string RVVIntrinsic::getSuffixStr(
BasicType Type, int Log2LMUL,
- const llvm::SmallVector<PrototypeDescriptor> &PrototypeDescriptors) {
+ const llvm::ArrayRef<PrototypeDescriptor> &PrototypeDescriptors) {
SmallVector<std::string> SuffixStrs;
for (auto PD : PrototypeDescriptors) {
auto T = RVVType::computeType(Type, Log2LMUL, PD);
Index: clang/include/clang/Support/RISCVVIntrinsicUtils.h
===================================================================
--- clang/include/clang/Support/RISCVVIntrinsicUtils.h
+++ clang/include/clang/Support/RISCVVIntrinsicUtils.h
@@ -341,9 +341,9 @@
// Return the type string for a BUILTIN() macro in Builtins.def.
std::string getBuiltinTypeStr() const;
- static std::string getSuffixStr(
- BasicType Type, int Log2LMUL,
- const llvm::SmallVector<PrototypeDescriptor> &PrototypeDescriptors);
+ static std::string
+ getSuffixStr(BasicType Type, int Log2LMUL,
+ const llvm::ArrayRef<PrototypeDescriptor> &PrototypeDescriptors);
};
} // end namespace RISCV
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits