Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp | ||
---|---|---|
356 | reflow |
llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp | ||
---|---|---|
256–257 | The change is fine of course but there ought to be a neater way of writing this using some kind of "max" operation. |
llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp | ||
---|---|---|
256–257 | If you had access to the variable itself you could do Alignment = std::max(Alignment, Align(64)). But it's currently a private variable. |
The change is fine of course but there ought to be a neater way of writing this using some kind of "max" operation.