[PATCH] D105207: [debuginfo][lsr] SCEV-based salvaging for LoopStrengthReduction
Martin Storsjö via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 28 01:03:53 PDT 2021
mstorsjo added a comment.
The crash is reproducible with this reduced sample:
$ cat repro.c
struct a {
char *b
} static c;
d(());
e(struct a *f) { d(f->b); }
g() {
while (h())
e(&c);
}
$ clang -target x86_64-linux-gnu -c -g -O2 repro.c
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D105207/new/
https://reviews.llvm.org/D105207
More information about the llvm-commits
mailing list