summaryrefslogtreecommitdiff
path: root/lib/Archive
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2011-12-13 23:17:12 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2011-12-13 23:17:12 +0000
commit5b08230930ee219382f6d0abe9d16aa160907169 (patch)
tree21c429e092426045222814e85a0c4ff62ea643c0 /lib/Archive
parentb92cb30cf547bf9a8590a981a49040f480c8eb82 (diff)
downloadllvm-5b08230930ee219382f6d0abe9d16aa160907169.tar.gz
llvm-5b08230930ee219382f6d0abe9d16aa160907169.tar.bz2
llvm-5b08230930ee219382f6d0abe9d16aa160907169.tar.xz
Support/FileSystem: Add file_magic and move a vew clients over to it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146523 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Archive')
-rw-r--r--lib/Archive/ArchiveWriter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Archive/ArchiveWriter.cpp b/lib/Archive/ArchiveWriter.cpp
index 8fcc7aa29c..9ef29432dd 100644
--- a/lib/Archive/ArchiveWriter.cpp
+++ b/lib/Archive/ArchiveWriter.cpp
@@ -182,11 +182,11 @@ Archive::addFileBefore(const sys::Path& filePath, iterator where,
if (hasSlash || filePath.str().length() > 15)
flags |= ArchiveMember::HasLongFilenameFlag;
- sys::LLVMFileType type;
+ sys::fs::file_magic type;
if (sys::fs::identify_magic(mbr->path.str(), type))
- type = sys::Unknown_FileType;
+ type = sys::fs::file_magic::unknown;
switch (type) {
- case sys::Bitcode_FileType:
+ case sys::fs::file_magic::bitcode:
flags |= ArchiveMember::BitcodeFlag;
break;
default: