File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
llvm/include/llvm/CodeGen Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -399,22 +399,22 @@ class RegisterBankInfo {
399
399
400
400
// / Keep dynamically allocated PartialMapping in a separate map.
401
401
// / This shouldn't be needed when everything gets TableGen'ed.
402
- mutable DenseMap<unsigned , std::unique_ptr<const PartialMapping>>
402
+ mutable DenseMap<hash_code , std::unique_ptr<const PartialMapping>>
403
403
MapOfPartialMappings;
404
404
405
405
// / Keep dynamically allocated ValueMapping in a separate map.
406
406
// / This shouldn't be needed when everything gets TableGen'ed.
407
- mutable DenseMap<unsigned , std::unique_ptr<const ValueMapping>>
407
+ mutable DenseMap<hash_code , std::unique_ptr<const ValueMapping>>
408
408
MapOfValueMappings;
409
409
410
410
// / Keep dynamically allocated array of ValueMapping in a separate map.
411
411
// / This shouldn't be needed when everything gets TableGen'ed.
412
- mutable DenseMap<unsigned , std::unique_ptr<ValueMapping[]>>
412
+ mutable DenseMap<hash_code , std::unique_ptr<ValueMapping[]>>
413
413
MapOfOperandsMappings;
414
414
415
415
// / Keep dynamically allocated InstructionMapping in a separate map.
416
416
// / This shouldn't be needed when everything gets TableGen'ed.
417
- mutable DenseMap<unsigned , std::unique_ptr<const InstructionMapping>>
417
+ mutable DenseMap<hash_code , std::unique_ptr<const InstructionMapping>>
418
418
MapOfInstructionMappings;
419
419
420
420
// / Getting the minimal register class of a physreg is expensive.
You can’t perform that action at this time.
0 commit comments