summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--llvm/tools/gccas/gccas.cpp2
-rw-r--r--llvm/tools/llc/llc.cpp4
-rw-r--r--llvm/tools/llvm-as/llvm-as.cpp2
-rw-r--r--llvm/tools/llvm-dis/llvm-dis.cpp2
-rw-r--r--llvm/tools/llvm-link/llvm-link.cpp2
-rw-r--r--llvm/tools/opt/opt.cpp2
6 files changed, 7 insertions, 7 deletions
diff --git a/llvm/tools/gccas/gccas.cpp b/llvm/tools/gccas/gccas.cpp
index 0f22480de84..0a50d9fbb54 100644
--- a/llvm/tools/gccas/gccas.cpp
+++ b/llvm/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/llvm/tools/llc/llc.cpp b/llvm/tools/llc/llc.cpp
index 6a769d8f54f..4a39ef4074c 100644
--- a/llvm/tools/llc/llc.cpp
+++ b/llvm/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/llvm/tools/llvm-as/llvm-as.cpp b/llvm/tools/llvm-as/llvm-as.cpp
index 7655129e58d..da956221199 100644
--- a/llvm/tools/llvm-as/llvm-as.cpp
+++ b/llvm/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/llvm/tools/llvm-dis/llvm-dis.cpp b/llvm/tools/llvm-dis/llvm-dis.cpp
index 1a4a46b8b91..4429efaaaab 100644
--- a/llvm/tools/llvm-dis/llvm-dis.cpp
+++ b/llvm/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/llvm/tools/llvm-link/llvm-link.cpp b/llvm/tools/llvm-link/llvm-link.cpp
index f3773953234..3400df8dc1d 100644
--- a/llvm/tools/llvm-link/llvm-link.cpp
+++ b/llvm/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/llvm/tools/opt/opt.cpp b/llvm/tools/opt/opt.cpp
index 743bfb8339a..1eaadd26204 100644
--- a/llvm/tools/opt/opt.cpp
+++ b/llvm/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);
}
OpenPOWER on IntegriCloud