diff options
author | Rui Ueyama <ruiu@google.com> | 2013-11-15 21:22:02 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2013-11-15 21:22:02 +0000 |
commit | 8a631b2cbe2f8621eb3679a4898205da577453b7 (patch) | |
tree | 54ce815755814be364f60b3263be96586ba52112 /include | |
parent | 0cbdb81de76274c3f1731d92dc09864d2277d690 (diff) | |
download | external_llvm-8a631b2cbe2f8621eb3679a4898205da577453b7.zip external_llvm-8a631b2cbe2f8621eb3679a4898205da577453b7.tar.gz external_llvm-8a631b2cbe2f8621eb3679a4898205da577453b7.tar.bz2 |
Path: Recognize COFF import library file magic.
Summary: Make identify_magic to recognize COFF import file.
Reviewers: Bigcheese
CC: llvm-commits
Differential Revision: http://llvm-reviews.chandlerc.com/D2165
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194852 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/FileSystem.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Support/FileSystem.h b/include/llvm/Support/FileSystem.h index 48ff224..d301f84 100644 --- a/include/llvm/Support/FileSystem.h +++ b/include/llvm/Support/FileSystem.h @@ -238,6 +238,7 @@ struct file_magic { macho_dsym_companion, ///< Mach-O dSYM companion file macho_universal_binary, ///< Mach-O universal binary coff_object, ///< COFF object file + coff_import_library, ///< COFF import library pecoff_executable, ///< PECOFF executable file windows_resource ///< Windows compiled resource file (.rc) }; |