Details
Details
Diff Detail
Diff Detail
Event Timeline
llvm/utils/TableGen/RegisterBankEmitter.cpp | ||
---|---|---|
136 | Why 0 when it was -1 before? |
llvm/utils/TableGen/RegisterBankEmitter.cpp | ||
---|---|---|
136 | This is still -1, just the unsigned interpretation. All of the code treats this as unsigned, so to avoid fixing up everywhere that uses these to use int, the enum needs to be switched to unsigned. |
Why 0 when it was -1 before?