1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

Fix grammar.

llvm-svn: 9026
This commit is contained in:
Misha Brukman 2003-10-10 17:56:49 +00:00
parent c59161ff84
commit e63af2ec7e
6 changed files with 7 additions and 7 deletions

View File

@ -117,7 +117,7 @@ int main(int argc, char **argv) {
else {
Out = new std::ofstream(OutputFilename.c_str(), std::ios::out);
// Make sure that the Out file gets unlink'd from the disk if we get a
// Make sure that the Out file gets unlinked from the disk if we get a
// signal
RemoveFileOnSignal(OutputFilename);
}

View File

@ -128,7 +128,7 @@ int main(int argc, char **argv) {
}
Out = new std::ofstream(OutputFilename.c_str());
// Make sure that the Out file gets unlink'd from the disk if we get a
// Make sure that the Out file gets unlinked from the disk if we get a
// SIGINT
RemoveFileOnSignal(OutputFilename);
} else {
@ -157,7 +157,7 @@ int main(int argc, char **argv) {
return 1;
}
// Make sure that the Out file gets unlink'd from the disk if we get a
// Make sure that the Out file gets unlinked from the disk if we get a
// SIGINT
RemoveFileOnSignal(OutputFilename);
}

View File

@ -92,7 +92,7 @@ int main(int argc, char **argv) {
}
Out = new std::ofstream(OutputFilename.c_str());
// Make sure that the Out file gets unlink'd from the disk if we get a
// Make sure that the Out file gets unlinked from the disk if we get a
// SIGINT
RemoveFileOnSignal(OutputFilename);
}

View File

@ -92,7 +92,7 @@ int main(int argc, char **argv) {
} else {
Out = new std::ofstream(OutputFilename.c_str());
// Make sure that the Out file gets unlink'd from the disk if we get a
// Make sure that the Out file gets unlinked from the disk if we get a
// SIGINT
RemoveFileOnSignal(OutputFilename);
}

View File

@ -120,7 +120,7 @@ int main(int argc, char **argv) {
return 1;
}
// Make sure that the Out file gets unlink'd from the disk if we get a
// Make sure that the Out file gets unlinked from the disk if we get a
// SIGINT
RemoveFileOnSignal(OutputFilename);
}

View File

@ -100,7 +100,7 @@ int main(int argc, char **argv) {
return 1;
}
// Make sure that the Output file gets unlink'd from the disk if we get a
// Make sure that the Output file gets unlinked from the disk if we get a
// SIGINT
RemoveFileOnSignal(OutputFilename);
}