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 5f5b3bb commit abea3b2Copy full SHA for abea3b2
llvm/lib/CodeGen/RDFGraph.cpp
@@ -870,7 +870,7 @@ void DataFlowGraph::build(const Config &config) {
870
std::set<RegisterId> BaseSet;
871
if (BuildCfg.Classes.empty()) {
872
// Insert every register.
873
- for (unsigned R = 0, E = getPRI().getTRI().getNumRegs(); R != E; ++R)
+ for (unsigned R = 1, E = getPRI().getTRI().getNumRegs(); R != E; ++R)
874
BaseSet.insert(R);
875
} else {
876
for (const TargetRegisterClass *RC : BuildCfg.Classes) {
0 commit comments