mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Iterate deterministically over register classes
Fixes an observed instance of nondeterministic TableGen output. Review by Jakob. llvm-svn: 164190
This commit is contained in:
parent
eedf4ffbcb
commit
c291496fe7
@ -599,7 +599,8 @@ public:
|
||||
std::vector<OperandMatchEntry> OperandMatchInfo;
|
||||
|
||||
/// Map of Register records to their class information.
|
||||
std::map<Record*, ClassInfo*> RegisterClasses;
|
||||
typedef std::map<Record*, ClassInfo*, LessRecordByID> RegisterClassesTy;
|
||||
RegisterClassesTy RegisterClasses;
|
||||
|
||||
/// Map of Predicate records to their subtarget information.
|
||||
std::map<Record*, SubtargetFeatureInfo*> SubtargetFeatures;
|
||||
@ -2043,7 +2044,7 @@ static void emitValidateOperandClass(AsmMatcherInfo &Info,
|
||||
OS << " MatchClassKind OpKind;\n";
|
||||
OS << " switch (Operand.getReg()) {\n";
|
||||
OS << " default: OpKind = InvalidMatchClass; break;\n";
|
||||
for (std::map<Record*, ClassInfo*>::iterator
|
||||
for (AsmMatcherInfo::RegisterClassesTy::iterator
|
||||
it = Info.RegisterClasses.begin(), ie = Info.RegisterClasses.end();
|
||||
it != ie; ++it)
|
||||
OS << " case " << Info.Target.getName() << "::"
|
||||
|
Loading…
Reference in New Issue
Block a user