1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Correct the method I just added to actually return false sometimes

llvm-svn: 11069
This commit is contained in:
Chris Lattner 2004-02-02 18:53:04 +00:00
parent 990f40f069
commit f5812885e3

View File

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