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
This commit is contained in:
Chris Lattner 2004-02-02 18:53:04 +00:00
parent f0fd6845ee
commit c07cd132cb

View File

@ -297,7 +297,7 @@ public:
double V;
uint64_t I;
} T2;
T2.V = Val;
T2.V = V;
return T1.I == T2.I;
}