From c07cd132cb3c6032e837f4b432c8f895ca1f1182 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 2 Feb 2004 18:53:04 +0000 Subject: [PATCH] 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 --- include/llvm/Constants.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }