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 832a757 commit c2b4790Copy full SHA for c2b4790
clang/lib/Sema/SemaRISCV.cpp
@@ -50,7 +50,7 @@ struct RVVIntrinsicDef {
50
51
struct RVVOverloadIntrinsicDef {
52
// Indexes of RISCVIntrinsicManagerImpl::IntrinsicList.
53
- SmallVector<uint16_t, 8> Indexes;
+ SmallVector<uint32_t, 8> Indexes;
54
};
55
56
} // namespace
@@ -169,7 +169,7 @@ class RISCVIntrinsicManagerImpl : public sema::RISCVIntrinsicManager {
169
// List of all RVV intrinsic.
170
std::vector<RVVIntrinsicDef> IntrinsicList;
171
// Mapping function name to index of IntrinsicList.
172
- StringMap<uint16_t> Intrinsics;
+ StringMap<uint32_t> Intrinsics;
173
// Mapping function name to RVVOverloadIntrinsicDef.
174
StringMap<RVVOverloadIntrinsicDef> OverloadIntrinsics;
175
0 commit comments