diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-10 15:37:29 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-10 15:37:29 +0000 |
commit | 27b7adef95a726555190072fd8603ba3a62b5d12 (patch) | |
tree | 92ed32faab43374a552cdcece6ba71931ae52b47 /include | |
parent | f12745f7a7e68c05c89ebd515b9b4faedce37dd0 (diff) | |
download | external_llvm-27b7adef95a726555190072fd8603ba3a62b5d12.zip external_llvm-27b7adef95a726555190072fd8603ba3a62b5d12.tar.gz external_llvm-27b7adef95a726555190072fd8603ba3a62b5d12.tar.bz2 |
Remove the old IdentifyFileType now that lld was updated.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183671 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/PathV1.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/Support/PathV1.h b/include/llvm/Support/PathV1.h index d4bb58a..31a2f91 100644 --- a/include/llvm/Support/PathV1.h +++ b/include/llvm/Support/PathV1.h @@ -726,9 +726,6 @@ namespace sys { /// This utility function allows any memory block to be examined in order /// to determine its file type. LLVMFileType identifyFileType(StringRef Magic); - inline LLVMFileType IdentifyFileType(const char *Magic, unsigned Length) { - return identifyFileType(StringRef(Magic, Length)); - } /// This function can be used to copy the file specified by Src to the /// file specified by Dest. If an error occurs, Dest is removed. |