diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-10-10 17:56:49 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-10-10 17:56:49 +0000 |
commit | 452fea997232437902385e88366482b01957eeef (patch) | |
tree | 5443f9a7081e1adbecc0f88e0866fccad0682e6b | |
parent | 6b63452c3ad26678b32f93dbca55902a313ee4e9 (diff) | |
download | external_llvm-452fea997232437902385e88366482b01957eeef.zip external_llvm-452fea997232437902385e88366482b01957eeef.tar.gz external_llvm-452fea997232437902385e88366482b01957eeef.tar.bz2 |
Fix grammar.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9026 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/gccas/gccas.cpp | 2 | ||||
-rw-r--r-- | tools/llc/llc.cpp | 4 | ||||
-rw-r--r-- | tools/llvm-as/llvm-as.cpp | 2 | ||||
-rw-r--r-- | tools/llvm-dis/llvm-dis.cpp | 2 | ||||
-rw-r--r-- | tools/llvm-link/llvm-link.cpp | 2 | ||||
-rw-r--r-- | tools/opt/opt.cpp | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp index 0f22480..0a50d9f 100644 --- a/tools/gccas/gccas.cpp +++ b/tools/gccas/gccas.cpp @@ -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); } diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp index 6a769d8..4a39ef4 100644 --- a/tools/llc/llc.cpp +++ b/tools/llc/llc.cpp @@ -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); } diff --git a/tools/llvm-as/llvm-as.cpp b/tools/llvm-as/llvm-as.cpp index 7655129..da95622 100644 --- a/tools/llvm-as/llvm-as.cpp +++ b/tools/llvm-as/llvm-as.cpp @@ -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); } diff --git a/tools/llvm-dis/llvm-dis.cpp b/tools/llvm-dis/llvm-dis.cpp index 1a4a46b..4429efa 100644 --- a/tools/llvm-dis/llvm-dis.cpp +++ b/tools/llvm-dis/llvm-dis.cpp @@ -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); } diff --git a/tools/llvm-link/llvm-link.cpp b/tools/llvm-link/llvm-link.cpp index f377395..3400df8 100644 --- a/tools/llvm-link/llvm-link.cpp +++ b/tools/llvm-link/llvm-link.cpp @@ -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); } diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp index 743bfb8..1eaadd2 100644 --- a/tools/opt/opt.cpp +++ b/tools/opt/opt.cpp @@ -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); } |