aboutsummaryrefslogtreecommitdiff
path: root/lib/Frontend/CompilerInstance.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2012-01-29 19:57:03 +0000
committerDouglas Gregor <dgregor@apple.com>2012-01-29 19:57:03 +0000
commit85ae12db3bbc60b920c086f1cb23cc94ad4802ae (patch)
treec93593a3fec8753d321518cad0b1e7f6cbc76369 /lib/Frontend/CompilerInstance.cpp
parentc5b2e58840748145d1706c1d1481369d1863fabf (diff)
Ensure that we clean up after a failed module build and cope with the
results in libclang. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@149200 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/CompilerInstance.cpp')
-rw-r--r--lib/Frontend/CompilerInstance.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/CompilerInstance.cpp b/lib/Frontend/CompilerInstance.cpp
index cc8d3b48a2..4f6ba166a7 100644
--- a/lib/Frontend/CompilerInstance.cpp
+++ b/lib/Frontend/CompilerInstance.cpp
@@ -926,7 +926,7 @@ void LockFileManager::waitForUnlock() {
const unsigned MaxSeconds = 3600;
do {
// Sleep for the designated interval, to allow the owning process time to
- // finish up and
+ // finish up and remove the lock file.
// FIXME: Should we hook in to system APIs to get a notification when the
// lock file is deleted?
#if LLVM_ON_WIN32