mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-21 03:05:26 -04:00
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:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user