diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-10 20:32:27 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-10 20:32:27 +0000 |
commit | 134cc996aeb85c364ca58bb185fb9d5c8d1d9b9f (patch) | |
tree | 06aa646e331e1a0225ba8422e1786025afb26203 /llvm/lib | |
parent | b22643a47d03da0f9308740b4fa832d66af2b6f9 (diff) | |
download | bcm5719-llvm-134cc996aeb85c364ca58bb185fb9d5c8d1d9b9f.tar.gz bcm5719-llvm-134cc996aeb85c364ca58bb185fb9d5c8d1d9b9f.zip |
Add a missing 'e'.
llvm-svn: 183692
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Support/PathV2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/PathV2.cpp b/llvm/lib/Support/PathV2.cpp index ac53a9e9e6b..1c2e2179cc0 100644 --- a/llvm/lib/Support/PathV2.cpp +++ b/llvm/lib/Support/PathV2.cpp @@ -838,7 +838,7 @@ file_magic identify_magic(StringRef magic) { case 2: return file_magic::macho_executable; case 3: return file_magic::macho_fixed_virtual_memory_shared_lib; case 4: return file_magic::macho_core; - case 5: return file_magic::macho_preload_executabl; + case 5: return file_magic::macho_preload_executable; case 6: return file_magic::macho_dynamically_linked_shared_lib; case 7: return file_magic::macho_dynamic_linker; case 8: return file_magic::macho_bundle; |