[llvm-commits] [llvm] r75126 - /llvm/trunk/lib/CompilerDriver/Main.cpp
Bill Wendling
isanbard at gmail.com
Thu Jul 9 01:48:45 PDT 2009
Author: void
Date: Thu Jul 9 03:48:45 2009
New Revision: 75126
URL: http://llvm.org/viewvc/llvm-project?rev=75126&view=rev
Log:
Missing )
Modified:
llvm/trunk/lib/CompilerDriver/Main.cpp
Modified: llvm/trunk/lib/CompilerDriver/Main.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CompilerDriver/Main.cpp?rev=75126&r1=75125&r2=75126&view=diff
==============================================================================
--- llvm/trunk/lib/CompilerDriver/Main.cpp (original)
+++ llvm/trunk/lib/CompilerDriver/Main.cpp Thu Jul 9 03:48:45 2009
@@ -31,7 +31,7 @@
sys::Path getTempDir() {
sys::Path tempDir;
- if (! TempDirname.empty() {
+ if (! TempDirname.empty()) {
tempDir = TempDirname;
if (!tempDir.exists()) {
std::string ErrMsg;
More information about the llvm-commits
mailing list