Skip to content

Commit

Permalink
Added return statement to fix compile and build warning:
Browse files Browse the repository at this point in the history
llvm-rtdyld.cpp:966:7: warning: variable ‘Result’ set but not used

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@371972 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Sjoerd Meijer committed Sep 16, 2019
1 parent 48d00ba commit 2eb46d7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tools/llvm-rtdyld/llvm-rtdyld.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -984,4 +984,5 @@ int main(int argc, char **argv) {
Result = linkAndVerify();
break;
}
return Result;
}

0 comments on commit 2eb46d7

Please sign in to comment.