From: Sanjay Patel Date: Mon, 20 May 2019 17:52:18 +0000 (+0000) Subject: [InstSimplify] update stale comment; NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=efa2b61951f773072f9d26434997f5e236ceb375;p=llvm [InstSimplify] update stale comment; NFC Missed this diff with rL361118. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@361180 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/InstructionSimplify.cpp b/lib/Analysis/InstructionSimplify.cpp index e7f96b11b0a..b71841a1607 100644 --- a/lib/Analysis/InstructionSimplify.cpp +++ b/lib/Analysis/InstructionSimplify.cpp @@ -3434,7 +3434,7 @@ static Value *SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS, } } - // Check comparison of constant with minnum with smaller constant. + // Check comparison of [minnum/maxnum with constant] with other constant. const APFloat *C2; if ((match(LHS, m_Intrinsic(m_Value(), m_APFloat(C2))) && C2->compare(*C) == APFloat::cmpLessThan) ||