clang-format to fix post-commit feedback

Thanks dblaikie!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@289485 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Bieneman 2016-12-12 23:05:15 +00:00
parent 1c770ffdad
commit d1dcfd2b00

View File

@ -386,14 +386,13 @@ Error MachOWriter::writeLinkEditData(raw_ostream &OS) {
Error MachOWriter::writeDWARFData(raw_ostream &OS,
std::vector<MachOYAML::Section> &Sections) {
for(auto Section : Sections) {
for (auto Section : Sections) {
ZeroToOffset(OS, Section.offset);
if (0 == strncmp(&Section.sectname[0], "__debug_str", 16)) {
yaml2debug_str(OS, Obj.DWARF);
} else if (0 == strncmp(&Section.sectname[0], "__debug_abbrev", 16)) {
yaml2debug_abbrev(OS, Obj.DWARF);
}
else if (0 == strncmp(&Section.sectname[0], "__debug_aranges", 16)) {
} else if (0 == strncmp(&Section.sectname[0], "__debug_aranges", 16)) {
yaml2debug_aranges(OS, Obj.DWARF);
}
}