mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-13 22:58:50 +00:00
The CopyFile function got moved into the sys namespace.
llvm-svn: 19026
This commit is contained in:
parent
97e79cf40a
commit
10c87d4b9c
@ -124,7 +124,7 @@ static void EmitShellScript(char **argv) {
|
|||||||
std::cerr << "Could not find llvm-stub.exe executable!\n";
|
std::cerr << "Could not find llvm-stub.exe executable!\n";
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
if (CopyFile(OutputFilename, llvmstub)) {
|
if (sys::CopyFile(OutputFilename, llvmstub)) {
|
||||||
std::cerr << "Could not copy the llvm-stub.exe executable!\n";
|
std::cerr << "Could not copy the llvm-stub.exe executable!\n";
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
@ -313,7 +313,7 @@ static void EmitShellScript(char **argv) {
|
|||||||
std::cerr << "Could not find llvm-stub.exe executable!\n";
|
std::cerr << "Could not find llvm-stub.exe executable!\n";
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
if (CopyFile(OutputFilename, llvmstub)) {
|
if (sys::CopyFile(OutputFilename, llvmstub)) {
|
||||||
std::cerr << "Could not copy the llvm-stub.exe executable!\n";
|
std::cerr << "Could not copy the llvm-stub.exe executable!\n";
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user