mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-16 14:31:59 +00:00
IR: cleanup Module::dropReferences
This replaces some old-style loops with range-based for. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212278 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
090a8f45f2
commit
8234268c7e
@ -437,14 +437,14 @@ std::error_code Module::materializeAllPermanently(bool ReleaseBuffer) {
|
||||
// has "dropped all references", except operator delete.
|
||||
//
|
||||
void Module::dropAllReferences() {
|
||||
for(Module::iterator I = begin(), E = end(); I != E; ++I)
|
||||
I->dropAllReferences();
|
||||
for (Function &F : *this)
|
||||
F.dropAllReferences();
|
||||
|
||||
for(Module::global_iterator I = global_begin(), E = global_end(); I != E; ++I)
|
||||
I->dropAllReferences();
|
||||
for (GlobalVariable &GV : globals())
|
||||
GV.dropAllReferences();
|
||||
|
||||
for(Module::alias_iterator I = alias_begin(), E = alias_end(); I != E; ++I)
|
||||
I->dropAllReferences();
|
||||
for (GlobalAlias &GA : aliases())
|
||||
GA.dropAllReferences();
|
||||
}
|
||||
|
||||
unsigned Module::getDwarfVersion() const {
|
||||
|
Loading…
x
Reference in New Issue
Block a user