malcolm.parsons added inline comments. ================ Comment at: lib/CodeGen/TargetInfo.cpp:6916 + if (!FD) return; + llvm::Function *Fn = cast<llvm::Function>(GV); + ---------------- You can use `auto *` here too. https://reviews.llvm.org/D28451