From: Chris Lattner Date: Mon, 2 Feb 2004 18:53:04 +0000 (+0000) Subject: Correct the method I just added to actually return false sometimes X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c07cd132cb3c6032e837f4b432c8f895ca1f1182;p=oota-llvm.git Correct the method I just added to actually return false sometimes git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11069 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Constants.h b/include/llvm/Constants.h index 2d6893acf09..7e728794181 100644 --- a/include/llvm/Constants.h +++ b/include/llvm/Constants.h @@ -297,7 +297,7 @@ public: double V; uint64_t I; } T2; - T2.V = Val; + T2.V = V; return T1.I == T2.I; }