mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-03 15:36:21 +00:00
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:
parent
4151e89f1e
commit
bc541ae238
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user