From 7160d3b6d2064cac3cbe112563ca9424bea4bd92 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Thu, 9 Jul 2009 08:48:45 +0000 Subject: [PATCH] Missing ) llvm-svn: 75126 --- llvm/lib/CompilerDriver/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/CompilerDriver/Main.cpp b/llvm/lib/CompilerDriver/Main.cpp index 57d2937b339f..c6e4e1415a06 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;