summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-06-10 20:32:27 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-06-10 20:32:27 +0000
commit6d315c6cf201a111d6e7c9118fafc6c39915d1db (patch)
treeb3895e7ad18bcb5852adcbc88db343fb09b7931d
parentaca93cf44f0459b6123e9ec640e4cdc7a86e90de (diff)
downloadllvm-6d315c6cf201a111d6e7c9118fafc6c39915d1db.tar.gz
llvm-6d315c6cf201a111d6e7c9118fafc6c39915d1db.tar.bz2
llvm-6d315c6cf201a111d6e7c9118fafc6c39915d1db.tar.xz
Add a missing 'e'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183692 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Support/FileSystem.h2
-rw-r--r--lib/Support/PathV2.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/FileSystem.h b/include/llvm/Support/FileSystem.h
index ffa642787b..9c74554a85 100644
--- a/include/llvm/Support/FileSystem.h
+++ b/include/llvm/Support/FileSystem.h
@@ -193,7 +193,7 @@ struct file_magic {
macho_executable, ///< Mach-O Executable
macho_fixed_virtual_memory_shared_lib, ///< Mach-O Shared Lib, FVM
macho_core, ///< Mach-O Core File
- macho_preload_executabl, ///< Mach-O Preloaded Executable
+ macho_preload_executable, ///< Mach-O Preloaded Executable
macho_dynamically_linked_shared_lib, ///< Mach-O dynlinked shared lib
macho_dynamic_linker, ///< The Mach-O dynamic linker
macho_bundle, ///< Mach-O Bundle file
diff --git a/lib/Support/PathV2.cpp b/lib/Support/PathV2.cpp
index ac53a9e9e6..1c2e2179cc 100644
--- a/lib/Support/PathV2.cpp
+++ b/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;