[clang] [clang][dataflow] Fix bug in `Value` comparison. (PR #76746)
Yitzhak Mandelbaum via cfe-commits
cfe-commits at lists.llvm.org
Wed Jan 10 11:52:35 PST 2024
================
@@ -53,8 +53,8 @@ TEST(ValueTest, EquivalentValuesWithDifferentPropsEquivalent) {
TopBoolValue V2(A.makeAtomRef(Atom(3)));
V1.setProperty("foo", Prop1);
V2.setProperty("bar", Prop2);
- EXPECT_TRUE(areEquivalentValues(V1, V2));
- EXPECT_TRUE(areEquivalentValues(V2, V1));
+ EXPECT_FALSE(areEquivalentValues(V1, V2));
----------------
ymand wrote:
Done
https://github.com/llvm/llvm-project/pull/76746
More information about the cfe-commits
mailing list