commit | 0caed281f7f47713ae8be61ed75bac03596e1add | [log] [tgz] |
---|---|---|
author | NAKAMURA Takumi <geek4civic@gmail.com> | Sat Oct 08 11:31:58 2011 +0000 |
committer | NAKAMURA Takumi <geek4civic@gmail.com> | Sat Oct 08 11:31:58 2011 +0000 |
tree | ea98339dcfbaa2ed4824d274f01edbe272545132 | |
parent | 96e21710e8bf64514ca7d3720cb3b2823eec9164 [diff] [blame] |
lib/Frontend/CompilerInstance.cpp: Suppress a "Comparision of unsigned and signed" warning on Cygwin gcc-4.3.4. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@141488 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Frontend/CompilerInstance.cpp b/lib/Frontend/CompilerInstance.cpp index c413a42..5526487 100644 --- a/lib/Frontend/CompilerInstance.cpp +++ b/lib/Frontend/CompilerInstance.cpp
@@ -925,7 +925,7 @@ #if LLVM_ON_WIN32 Interval < MaxSeconds * 1000 #else - Interval.tv_sec < MaxSeconds + Interval.tv_sec < (time_t)MaxSeconds #endif );