1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Added return statement to fix compile and build warning:

llvm-rtdyld.cpp:966:7: warning: variable ‘Result’ set but not used

llvm-svn: 371972
This commit is contained in:
Sjoerd Meijer 2019-09-16 10:30:37 +00:00
parent ddebfac518
commit dbffb05716

View File

@ -984,4 +984,5 @@ int main(int argc, char **argv) {
Result = linkAndVerify();
break;
}
return Result;
}