[PATCH] D131415: Remove variable names from sanitize-memory-track-origins binary.
Kevin Athey via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 10 09:28:23 PDT 2022
kda added a comment.
In D131415#3713065 <https://reviews.llvm.org/D131415#3713065>, @kcc wrote:
> Uninitialized value was created by an allocation of 'foo' in the stack frame of function 'main'
Absolutely. And this change will remove `foo` and `main` from the global.
The new message is:
Uninitialized value was created on the stack (first frame below should reference the variable)
I believe that `foo` is somewhere else in the binary, but I don't know the code which would be required to draw it out and display it in the message.
I'm looking for a hint.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D131415/new/
https://reviews.llvm.org/D131415
More information about the llvm-commits
mailing list