forked from OSchip/llvm-project
Delete dead code: only functions are materializable.
llvm-svn: 256052
This commit is contained in:
parent
36f51e4c97
commit
1ea4efb41a
|
@ -236,10 +236,6 @@ int main(int argc, char **argv) {
|
|||
} else {
|
||||
// Deleting. Materialize every GV that's *not* in GVs.
|
||||
SmallPtrSet<GlobalValue *, 8> GVSet(GVs.begin(), GVs.end());
|
||||
for (auto &G : M->globals()) {
|
||||
if (!GVSet.count(&G))
|
||||
Materialize(G);
|
||||
}
|
||||
for (auto &F : *M) {
|
||||
if (!GVSet.count(&F))
|
||||
Materialize(F);
|
||||
|
|
Loading…
Reference in New Issue