Searched defs:ErrInfo (Results 1 - 6 of 6) sorted by relevance

/external/llvm/examples/BrainF/
H A DBrainFDriver.cpp110 std::string ErrInfo; local
111 out = new raw_fd_ostream(OutputFilename.c_str(), ErrInfo,
/external/llvm/tools/llvm-extract/
H A Dllvm-extract.cpp221 std::string ErrInfo; local
222 if (GV->Materialize(&ErrInfo)) {
223 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; local
233 std::string ErrInfo; local
234 if (G.Materialize(&ErrInfo)) {
235 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; local
242 std::string ErrInfo; local
243 if (F.Materialize(&ErrInfo)) {
244 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; local
/external/llvm/tools/bugpoint/
H A DOptimizerDriver.cpp75 std::string ErrInfo; local
76 tool_output_file Out(Filename.c_str(), ErrInfo, sys::fs::F_None);
77 if (ErrInfo.empty())
/external/llvm/lib/IR/
H A DGlobals.cpp37 bool GlobalValue::Materialize(std::string *ErrInfo) { argument
38 return getParent()->Materialize(this, ErrInfo);
H A DModule.cpp393 bool Module::Materialize(GlobalValue *GV, std::string *ErrInfo) { argument
400 if (ErrInfo)
401 *ErrInfo = EC.message();
/external/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp164 std::string ErrInfo; local
165 tool_output_file Out(path, ErrInfo, sys::fs::F_None);
166 if (!ErrInfo.empty()) {

Completed in 130 milliseconds