diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2017-10-18 13:31:28 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2017-10-18 13:31:28 +0000 |
commit | 6f43bd4bde15873fe000e27575a54f5223637cf8 (patch) | |
tree | cdea2c9b17e7a0a44a0c44df12473c16351d0931 /llvm/lib/Object/MachOObjectFile.cpp | |
parent | da8808bf91973db7840badac408f55cc38f267cb (diff) | |
download | bcm5719-llvm-6f43bd4bde15873fe000e27575a54f5223637cf8.tar.gz bcm5719-llvm-6f43bd4bde15873fe000e27575a54f5223637cf8.zip |
Untabify.
llvm-svn: 316079
Diffstat (limited to 'llvm/lib/Object/MachOObjectFile.cpp')
-rw-r--r-- | llvm/lib/Object/MachOObjectFile.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Object/MachOObjectFile.cpp b/llvm/lib/Object/MachOObjectFile.cpp index 8ac96919719..4620fdde81d 100644 --- a/llvm/lib/Object/MachOObjectFile.cpp +++ b/llvm/lib/Object/MachOObjectFile.cpp @@ -477,8 +477,8 @@ static Error checkDysymtabCommand(const MachOObjectFile &Obj, "the file"); if (Error Err = checkOverlappingElement(Elements, Dysymtab.tocoff, Dysymtab.ntoc * sizeof(struct - MachO::dylib_table_of_contents), - "table of contents")) + MachO::dylib_table_of_contents), + "table of contents")) return Err; if (Dysymtab.modtaboff > FileSize) return malformedError("modtaboff field of LC_DYSYMTAB command " + @@ -537,7 +537,7 @@ static Error checkDysymtabCommand(const MachOObjectFile &Obj, if (Error Err = checkOverlappingElement(Elements, Dysymtab.indirectsymoff, Dysymtab.nindirectsyms * sizeof(uint32_t), - "indirect table")) + "indirect table")) return Err; if (Dysymtab.extreloff > FileSize) return malformedError("extreloff field of LC_DYSYMTAB command " + |