Remove extraneous curly braces and blank lines.

llvm-svn: 195107
This commit is contained in:
Rui Ueyama 2013-11-19 06:18:39 +00:00
parent 9a01d155b6
commit d9b26dc84b
2 changed files with 1 additions and 6 deletions

View File

@ -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

View File

@ -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