Clean up warning about unused variable

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224281 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Michael Ilseman 2014-12-15 21:47:09 +00:00
parent 4151e89f1e
commit bc541ae238

View File

@ -1532,8 +1532,10 @@ bool ModuleLinker::run() {
GlobalValue *SGV = LazilyLinkGlobalValues.back();
LazilyLinkGlobalValues.pop_back();
if (auto F = dyn_cast<Function>(SGV))
assert(!F->isDeclaration() && "users should not pass down decls");
if (isa<Function>(SGV))
assert(!cast<Function>(SGV)->isDeclaration() &&
"users should not pass down decls");
if (linkGlobalValueBody(*SGV))
return true;
}