[PATCH] D128212: [DebugInfo] Extend the InstrRef LDV to support DbgValues with many Ops
Alexander Potapenko via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 24 10:16:32 PDT 2022
glider added a comment.
Oh, actually creduce can do better:
struct b {
int c;
int d
};
struct e {
int f
};
int g;
void i();
void j(struct b *k) { i(k->d); }
int l(struct e *k) {
int a, b;
a = k->f;
struct b *h = k;
while (a) {
j(h);
if (g < b)
return 0;
h++;
a--;
b = g;
}
i(k);
}
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D128212/new/
https://reviews.llvm.org/D128212
More information about the llvm-commits
mailing list