[PATCH] D67028: Use musttail for variadic method thunks when possible
Eli Friedman via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Sep 5 14:14:40 PDT 2019
efriedma added a comment.
Oops, meant to actually include the testcase in my last comment:
struct V1 { };
struct V2 : virtual V1 { };
struct A {
virtual V1 *f(int,...);
};
struct B : A {
virtual void b();
virtual V2 *f(int,...);
};
B b;
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D67028/new/
https://reviews.llvm.org/D67028
More information about the cfe-commits
mailing list