From: Chris Lattner Date: Fri, 14 Sep 2007 22:57:00 +0000 (+0000) Subject: fix a gcc warning: comparison between signed and unsigned integer expressions X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2204906892a4682bcb6f3fafd1ae1b52a034482c;p=oota-llvm.git fix a gcc warning: comparison between signed and unsigned integer expressions git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41972 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/FoldingSet.cpp b/lib/Support/FoldingSet.cpp index 70daad9a619..e083f3b9d1a 100644 --- a/lib/Support/FoldingSet.cpp +++ b/lib/Support/FoldingSet.cpp @@ -59,7 +59,7 @@ void FoldingSetImpl::NodeID::AddDouble(double D) { void FoldingSetImpl::NodeID::AddAPFloat(const APFloat& apf) { APInt api = apf.convertToAPInt(); const uint64_t *p = api.getRawData(); - for (int i=0; i