Files
clang-p2996/llvm/lib/ProfileData/MemProfReader.cpp
Kazu Hirata 02b9c97b75 [memprof] Simplify code with MapVector::operator[] (NFC) (#111335)
Note that the following are all equivalent to each other:

  Map.insert({Key, Value()}).first->second
  Map.try_emplace(Key).first->second
  Map[Key]
2024-10-07 09:00:05 -07:00

29 KiB