[PATCH] D81793: [IR] Support efficient lookup of AssertingVH/PoisoningVH

Fangrui Song via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Jun 14 08:32:47 PDT 2020


MaskRay accepted this revision.
MaskRay added a comment.
This revision is now accepted and ready to land.

Thanks!



================
Comment at: llvm/unittests/IR/ValueHandleTest.cpp:496
+  DenseMap<AssertingVH<Value>, int> Map;
+  Map.insert({ BitcastV.get(), 1 });
+  Map.insert({ ConstantV, 2 });
----------------
`{ K, V }` -> `{K, V}`



CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D81793/new/

https://reviews.llvm.org/D81793





More information about the llvm-commits mailing list