Depends on D114488.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
compiler-rt/lib/sanitizer_common/sanitizer_stack_store.h | ||
---|---|---|
48 | Can we add a check that id > 0? Also I am usually nervous about using '-' for unsigned type. |
compiler-rt/lib/sanitizer_common/sanitizer_stack_store.h | ||
---|---|---|
72 | Than I need cast to uptr* from u8*, which is worse as alignment will be less clear |
compiler-rt/lib/sanitizer_common/sanitizer_stack_store.h | ||
---|---|---|
72 | Your call. I just notice that you have to cast and wanted to point it out. |
Can we add a check that id > 0? Also I am usually nervous about using '-' for unsigned type.