Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/lib/Parser/
H A Dsource.cpp126 auto buf_or = llvm::MemoryBuffer::getSTDIN(); in ReadStandardInput() local
127 if (!buf_or) { in ReadStandardInput()
128 auto err = buf_or.getError(); in ReadStandardInput()
132 auto inbuf = std::move(buf_or.get()); in ReadStandardInput()
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dmod-file.cpp876 auto buf_or{llvm::MemoryBuffer::getFile(path)}; in FileContentsMatch() local
877 if (!buf_or) { in FileContentsMatch()
880 auto buf = std::move(buf_or.get()); in FileContentsMatch()