Should avoid regression from D62341
Details
Details
Diff Detail
Diff Detail
Event Timeline
lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp | ||
---|---|---|
93 | Don't you have warnings doing negation on an uint? Making it int may be cleaner. |
lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp | ||
---|---|---|
93 | There's no warning because it's the same operation. Making it int would be worse, because then it would involve multiple casts to get the unsigned shift |
Don't you have warnings doing negation on an uint? Making it int may be cleaner.