diff options
Diffstat (limited to 'llvm/lib/CompilerDriver/Main.cpp')
-rw-r--r-- | llvm/lib/CompilerDriver/Main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CompilerDriver/Main.cpp b/llvm/lib/CompilerDriver/Main.cpp index 57d2937b339..c6e4e1415a0 100644 --- a/llvm/lib/CompilerDriver/Main.cpp +++ b/llvm/lib/CompilerDriver/Main.cpp @@ -31,7 +31,7 @@ namespace { sys::Path getTempDir() { sys::Path tempDir; - if (! TempDirname.empty() { + if (! TempDirname.empty()) { tempDir = TempDirname; if (!tempDir.exists()) { std::string ErrMsg; |