forked from OSchip/llvm-project
Remove extraneous curly braces and blank lines.
llvm-svn: 195107
This commit is contained in:
parent
9a01d155b6
commit
d9b26dc84b
|
@ -18,13 +18,9 @@ StringRef File::translationUnitSource() const {
|
|||
return StringRef();
|
||||
}
|
||||
|
||||
|
||||
File::atom_collection_empty<DefinedAtom> File::_noDefinedAtoms;
|
||||
File::atom_collection_empty<UndefinedAtom> File::_noUndefinedAtoms;
|
||||
File::atom_collection_empty<SharedLibraryAtom> File::_noSharedLibraryAtoms;
|
||||
File::atom_collection_empty<AbsoluteAtom> File::_noAbsoluteAtoms;
|
||||
|
||||
|
||||
|
||||
|
||||
} // namespace lld
|
||||
|
|
|
@ -16,9 +16,8 @@
|
|||
|
||||
namespace lld {
|
||||
error_code PassManager::runOnFile(std::unique_ptr<MutableFile> &mf) {
|
||||
for (auto &pass : _passes) {
|
||||
for (auto &pass : _passes)
|
||||
pass->perform(mf);
|
||||
}
|
||||
return error_code::success();
|
||||
}
|
||||
} // end namespace lld
|
||||
|
|
Loading…
Reference in New Issue