[ModuleInterfaces] Remove references to 'parseable' interfaces everywhere

Now that we've settled on Module Interface as the name, let's remove the
vestiges of "Parseable Interfaces"
This commit is contained in:
Harlan Haskins
2019-09-13 14:15:34 -07:00
parent dcbfe443ca
commit c82c9b8210
41 changed files with 149 additions and 148 deletions

View File

@@ -309,7 +309,7 @@ std::error_code SerializedModuleLoader::findModuleFilesInDirectory(
StringRef ModuleDocFilename,
std::unique_ptr<llvm::MemoryBuffer> *ModuleBuffer,
std::unique_ptr<llvm::MemoryBuffer> *ModuleDocBuffer) {
if (LoadMode == ModuleLoadingMode::OnlyParseable)
if (LoadMode == ModuleLoadingMode::OnlyInterface)
return std::make_error_code(std::errc::not_supported);
llvm::SmallString<256> ModulePath{DirPath};