Pass a StringRef to sys::identifyFileType.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183669 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola
2013-06-10 15:27:39 +00:00
parent b972457783
commit f12745f7a7
9 changed files with 15 additions and 18 deletions

View File

@@ -725,9 +725,9 @@ namespace sys {
/// This utility function allows any memory block to be examined in order
/// to determine its file type.
LLVMFileType identifyFileType(const char *Magic, unsigned Length);
LLVMFileType identifyFileType(StringRef Magic);
inline LLVMFileType IdentifyFileType(const char *Magic, unsigned Length) {
return identifyFileType(Magic, Length);
return identifyFileType(StringRef(Magic, Length));
}
/// This function can be used to copy the file specified by Src to the