mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-05 02:07:16 +00:00
Fix style.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@221547 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4d84fe9839
commit
049368273b
@ -105,8 +105,7 @@ struct GraphSession {
|
||||
SmallVector<StringRef, 8> parts;
|
||||
Names.split(parts, "|");
|
||||
for (auto Name : parts) {
|
||||
auto P = sys::findProgramByName(Name);
|
||||
if (P) {
|
||||
if (ErrorOr<std::string> P = sys::findProgramByName(Name)) {
|
||||
ProgramPath = *P;
|
||||
return true;
|
||||
}
|
||||
|
@ -161,11 +161,10 @@ bool BugDriver::runPasses(Module *Program,
|
||||
|
||||
std::string tool = OptCmd;
|
||||
if (OptCmd.empty()) {
|
||||
auto Path = sys::findProgramByName("opt");
|
||||
if (!Path)
|
||||
errs() << Path.getError().message() << "\n";
|
||||
else
|
||||
if (ErrorOr<std::string> Path = sys::findProgramByName("opt"))
|
||||
tool = *Path;
|
||||
else
|
||||
errs() << Path.getError().message() << "\n";
|
||||
}
|
||||
if (tool.empty()) {
|
||||
errs() << "Cannot find `opt' in PATH!\n";
|
||||
@ -174,11 +173,10 @@ bool BugDriver::runPasses(Module *Program,
|
||||
|
||||
std::string Prog;
|
||||
if (UseValgrind) {
|
||||
auto Path = sys::findProgramByName("valgrind");
|
||||
if (!Path)
|
||||
errs() << Path.getError().message() << "\n";
|
||||
else
|
||||
if (ErrorOr<std::string> Path = sys::findProgramByName("valgrind"))
|
||||
Prog = *Path;
|
||||
else
|
||||
errs() << Path.getError().message() << "\n";
|
||||
} else
|
||||
Prog = tool;
|
||||
if (Prog.empty()) {
|
||||
|
Loading…
Reference in New Issue
Block a user