Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/include/llvm/MC/MCRegister.h | ||
---|---|---|
24 | I had to add hash_value for the hash_value function at llvm/include/llvm/CodeGen/RegAllocPBQP.h:124 |
llvm/lib/CodeGen/RegisterCoalescer.cpp | ||
---|---|---|
1522 | MCRegUnitIterator takes MCRegisters, so either Reg.asMCReg(), or NewMIImplDefs is MCRegister values (if the latter is correct) |
Comment Actions
Address comments
llvm/lib/CodeGen/RegisterCoalescer.cpp | ||
---|---|---|
1522 | Thanks NewMIImplDefs should be MCRegister values. Fixed now. |
Nit: can drop the init here, because Register has a ctor.