File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ struct RVVIntrinsicDef {
43
43
44
44
struct RVVOverloadIntrinsicDef {
45
45
// Indexes of RISCVIntrinsicManagerImpl::IntrinsicList.
46
- SmallVector<size_t , 8 > Indexes;
46
+ SmallVector<unsigned , 8 > Indexes;
47
47
};
48
48
49
49
} // namespace
@@ -162,7 +162,7 @@ class RISCVIntrinsicManagerImpl : public sema::RISCVIntrinsicManager {
162
162
// List of all RVV intrinsic.
163
163
std::vector<RVVIntrinsicDef> IntrinsicList;
164
164
// Mapping function name to index of IntrinsicList.
165
- StringMap<size_t > Intrinsics;
165
+ StringMap<unsigned > Intrinsics;
166
166
// Mapping function name to RVVOverloadIntrinsicDef.
167
167
StringMap<RVVOverloadIntrinsicDef> OverloadIntrinsics;
168
168
@@ -386,7 +386,7 @@ void RISCVIntrinsicManagerImpl::InitRVVIntrinsic(
386
386
Record.HasFRMRoundModeOp );
387
387
388
388
// Put into IntrinsicList.
389
- size_t Index = IntrinsicList.size ();
389
+ unsigned Index = IntrinsicList.size ();
390
390
IntrinsicList.push_back ({BuiltinName, Signature});
391
391
392
392
// Creating mapping to Intrinsics.
You can’t perform that action at this time.
0 commit comments