Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4233 Expected<DataLayout> MaybeDL = DataLayout::parse(TentativeDataLayoutStr); in parseModule() local
4234 if (!MaybeDL) in parseModule()
4235 return MaybeDL.takeError(); in parseModule()
4237 TheModule->setDataLayout(MaybeDL.get()); in parseModule()
/openbsd-src/gnu/llvm/llvm/lib/AsmParser/
H A DLLParser.cpp361 Expected<DataLayout> MaybeDL = DataLayout::parse(TentativeDLStr); in parseTargetDefinitions() local
362 if (!MaybeDL) in parseTargetDefinitions()
363 return error(DLStrLoc, toString(MaybeDL.takeError())); in parseTargetDefinitions()
364 M->setDataLayout(MaybeDL.get()); in parseTargetDefinitions()