Fix harder for LLVM/Clang trunk.

Swift SVN r18839
This commit is contained in:
John McCall
2014-06-12 21:11:11 +00:00
parent 0c45c0c9e2
commit 8a6ee4c8e7
2 changed files with 7 additions and 7 deletions

View File

@@ -128,7 +128,7 @@ findModule(ASTContext &ctx, AccessPathElem moduleID,
// If we're not allowed to look in the runtime library import path, stop.
if (ctx.SearchPathOpts.SkipRuntimeLibraryImportPath)
return llvm::make_error_code(std::errc::no_such_file_or_directory);
return std::make_error_code(std::errc::no_such_file_or_directory);
// Search the runtime import path.
isFramework = false;