[llvm-branch-commits] Add llvm.protected.field.ptr intrinsic and pre-ISel lowering. (PR #151647)
Nikita Popov via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Fri Aug 1 01:04:22 PDT 2025
================
@@ -37,6 +39,8 @@
#include "llvm/Transforms/Utils/LowerMemIntrinsics.h"
#include "llvm/Transforms/Utils/LowerVectorIntrinsics.h"
+#include <set>
----------------
nikic wrote:
Do not use `std::set` unless you actually need an ordered set. Based on usage, you want SmallPtrSet.
https://github.com/llvm/llvm-project/pull/151647
More information about the llvm-branch-commits
mailing list