Correct the method I just added to actually return false sometimes
authorChris Lattner <sabre@nondot.org>
Mon, 2 Feb 2004 18:53:04 +0000 (18:53 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 2 Feb 2004 18:53:04 +0000 (18:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11069 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Constants.h

index 2d6893acf098a099b243eae901c5c08e33af7aa7..7e72879418110b5d9388270aa71a69bc7abef6f9 100644 (file)
@@ -297,7 +297,7 @@ public:
       double V;
       uint64_t I;
     } T2;
-    T2.V = Val;
+    T2.V = V;
     return T1.I == T2.I;
   }