Kazu Hirata
07eb7b7692
[llvm] Replace SmallSet with SmallPtrSet (NFC) ( #154068 )
...
This patch replaces SmallSet<T *, N> with SmallPtrSet<T *, N>. Note
that SmallSet.h "redirects" SmallSet to SmallPtrSet for pointer
element types:
template <typename PointeeType, unsigned N>
class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N>
{};
We only have 140 instances that rely on this "redirection", with the
vast majority of them under llvm/. Since relying on the redirection
doesn't improve readability, this patch replaces SmallSet with
SmallPtrSet for pointer element types.
2025-08-18 07:01:29 -07:00
..
2025-08-03 20:03:20 -07:00
2025-06-17 13:28:45 -07:00
2025-08-17 23:46:35 -07:00
2025-06-17 13:28:45 -07:00
2025-04-28 09:26:34 -07:00
2025-07-12 15:46:12 -07:00
2025-04-21 04:21:37 +03:00
2020-02-29 09:50:23 +01:00
2025-05-26 14:57:16 -07:00
2019-01-19 08:50:56 +00:00
2025-02-24 09:55:34 -08:00
2025-02-24 09:55:34 -08:00
2025-06-27 17:40:43 +09:00
2025-05-09 07:40:02 +08:00
2025-04-28 09:26:34 -07:00
2025-05-06 18:01:17 -07:00
2025-05-30 22:33:34 -04:00
2023-01-28 09:23:07 -08:00
2025-08-17 23:46:35 -07:00
2025-07-15 13:22:33 -04:00
2025-07-15 13:22:33 -04:00
2025-08-07 09:12:40 +02:00
2025-08-18 09:22:41 +02:00
2022-01-02 10:20:15 -08:00
2025-08-18 09:22:41 +02:00
2025-08-18 09:22:41 +02:00
2025-08-18 07:01:29 -07:00
2025-07-15 13:22:33 -04:00
2025-05-23 08:30:29 -07:00
2025-08-18 09:22:41 +02:00
2025-07-15 13:22:33 -04:00
2025-05-14 19:52:31 +08:00
2025-05-14 19:52:31 +08:00
2025-07-15 13:22:33 -04:00
2024-07-10 09:01:27 -04:00
2024-11-16 20:55:33 -08:00
2025-08-18 09:22:41 +02:00
2025-07-28 10:36:40 +02:00
2024-03-23 13:12:44 +01:00
2025-06-17 09:36:53 -07:00
2025-06-15 18:46:51 -07:00
2022-03-16 08:43:00 +01:00
2025-05-23 08:30:29 -07:00
2024-06-11 21:27:14 +08:00
2022-03-10 10:00:29 +01:00
2025-05-23 08:30:29 -07:00
2025-05-26 14:57:16 -07:00
2025-07-15 13:22:33 -04:00
2025-05-04 01:18:19 -04:00
2025-07-12 15:46:12 -07:00
2025-02-24 09:55:34 -08:00
2025-02-24 09:55:34 -08:00
2025-04-28 11:09:43 +10:00
2025-02-16 19:10:49 -08:00
2025-01-24 11:23:34 +08:00
2025-01-24 11:23:34 +08:00
2024-12-21 05:29:51 +03:00
2025-05-30 08:03:50 +02:00
2025-07-15 13:22:33 -04:00
2025-06-17 13:28:45 -07:00
2025-06-17 09:36:53 -07:00
2020-05-21 15:23:29 -07:00
2025-04-22 06:27:29 +03:00
2025-06-15 08:51:59 +01:00