Remove auto

This commit is contained in:
Diana Picus 2025-08-15 11:53:13 +02:00
parent 20b30e00a6
commit b0fb6a7e2b

View File

@ -8912,7 +8912,7 @@ bool SelectionDAGBuilder::canTailCall(const CallBase &CB) const {
// Avoid emitting tail calls in functions with the disable-tail-calls
// attribute.
auto *Caller = CB.getParent()->getParent();
const Function *Caller = CB.getParent()->getParent();
if (Caller->getFnAttribute("disable-tail-calls").getValueAsString() ==
"true" &&
!isMustTailCall)