Home
last modified time | relevance | path

Searched refs:FileOrError (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
H A DMagic.cpp226 auto FileOrError = MemoryBuffer::getFile(Path, /*IsText=*/false, in identify_magic() local
228 if (!FileOrError) in identify_magic()
229 return FileOrError.getError(); in identify_magic()
231 std::unique_ptr<MemoryBuffer> FileBuffer = std::move(*FileOrError); in identify_magic()