Make the assert a bit stronger.

We should get no declarations in here.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224382 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2014-12-16 22:29:43 +00:00
parent 84201cb2bd
commit e1bf514b2b

View File

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