Files
clang-p2996/llvm/lib/TargetParser
Kazu Hirata f90025ebd9 [llvm] Compare std::optional<T> to values directly (NFC) (#146222)
This patch transforms:

  X && *X == Y

to:

  X == Y

where X is of std::optional<T>, and Y is of T or similar.
2025-06-28 13:04:16 -07:00
..