diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Archive/ArchiveReader.cpp | 2 | ||||
-rw-r--r-- | lib/System/Win32/Path.inc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Archive/ArchiveReader.cpp b/lib/Archive/ArchiveReader.cpp index c8ffcd6863..529b652707 100644 --- a/lib/Archive/ArchiveReader.cpp +++ b/lib/Archive/ArchiveReader.cpp @@ -204,7 +204,7 @@ Archive::parseMemberHeader(const char*& At, const char* End, std::string* error) break; } - // Determine if this is a bytecode file + // Determine if this is a bitcode file switch (sys::IdentifyFileType(At, 4)) { case sys::Bitcode_FileType: flags |= ArchiveMember::BitcodeFlag; diff --git a/lib/System/Win32/Path.inc b/lib/System/Win32/Path.inc index 67f16a75b6..994bc671c1 100644 --- a/lib/System/Win32/Path.inc +++ b/lib/System/Win32/Path.inc @@ -189,7 +189,7 @@ Path::GetSystemLibraryPaths(std::vector<sys::Path>& Paths) { } void -Path::GetBytecodeLibraryPaths(std::vector<sys::Path>& Paths) { +Path::GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths) { char * env_var = getenv("LLVM_LIB_SEARCH_PATH"); if (env_var != 0) { getPathList(env_var,Paths); |