mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-23 22:52:48 +00: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:
parent
1c770ffdad
commit
d1dcfd2b00
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user