forked from OSchip/llvm-project
Remove some tabs and extraneous space chars from ObjectFileMachO.cpp.
Noticed these while working on the last commit. llvm-svn: 176590
This commit is contained in:
parent
255f9bbcf4
commit
4e7511efc7
|
@ -1524,8 +1524,8 @@ ObjectFileMachO::ParseSymtab (bool minimize)
|
|||
char dsc_path[PATH_MAX];
|
||||
|
||||
snprintf(dsc_path, sizeof(dsc_path), "%s%s%s",
|
||||
"/System/Library/Caches/com.apple.dyld/", /* IPHONE_DYLD_SHARED_CACHE_DIR */
|
||||
"dyld_shared_cache_", /* DYLD_SHARED_CACHE_BASE_NAME */
|
||||
"/System/Library/Caches/com.apple.dyld/", /* IPHONE_DYLD_SHARED_CACHE_DIR */
|
||||
"dyld_shared_cache_", /* DYLD_SHARED_CACHE_BASE_NAME */
|
||||
header_arch.GetArchitectureName());
|
||||
|
||||
FileSpec dsc_filespec(dsc_path, false);
|
||||
|
@ -1536,13 +1536,13 @@ ObjectFileMachO::ParseSymtab (bool minimize)
|
|||
char magic[16]; // e.g. "dyld_v0 i386", "dyld_v1 armv7", etc.
|
||||
uint32_t mappingOffset; // file offset to first dyld_cache_mapping_info
|
||||
uint32_t mappingCount; // number of dyld_cache_mapping_info entries
|
||||
uint32_t imagesOffset;
|
||||
uint32_t imagesCount;
|
||||
uint64_t dyldBaseAddress;
|
||||
uint64_t codeSignatureOffset;
|
||||
uint64_t codeSignatureSize;
|
||||
uint64_t slideInfoOffset;
|
||||
uint64_t slideInfoSize;
|
||||
uint32_t imagesOffset;
|
||||
uint32_t imagesCount;
|
||||
uint64_t dyldBaseAddress;
|
||||
uint64_t codeSignatureOffset;
|
||||
uint64_t codeSignatureSize;
|
||||
uint64_t slideInfoOffset;
|
||||
uint64_t slideInfoSize;
|
||||
uint64_t localSymbolsOffset; // file offset of where local symbols are stored
|
||||
uint64_t localSymbolsSize; // size of local symbols information
|
||||
};
|
||||
|
@ -1558,8 +1558,8 @@ ObjectFileMachO::ParseSymtab (bool minimize)
|
|||
uint64_t codeSignatureSize;
|
||||
uint64_t slideInfoOffset;
|
||||
uint64_t slideInfoSize;
|
||||
uint64_t localSymbolsOffset;
|
||||
uint64_t localSymbolsSize;
|
||||
uint64_t localSymbolsOffset;
|
||||
uint64_t localSymbolsSize;
|
||||
uint8_t uuid[16]; // v1 and above, also recorded in dyld_all_image_infos v13 and later
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue