summaryrefslogtreecommitdiff
path: root/compiler-rt/lib/interception/interception_mac.cpp
AgeCommit message (Collapse)Author
2022-05-24[Sanitizers][Darwin] Replace SANITIZER_MAC with SANITIZER_APPLE in source filesMariusz Borsa
This is a follow up to [Sanitizers][Darwin] Rename Apple macro SANITIZER_MAC -> SANITIZER_APPLE (D125816) Performed a global search/replace as in title against LLVM sources Differential Revision: https://reviews.llvm.org/D126263
2019-07-31compiler-rt: Rename .cc files in lib/interception to .cpp.Nico Weber
See https://reviews.llvm.org/D58620 for discussion, and for the commands I ran. In addition I also ran for f in $(svn diff | diffstat | grep .cc | cut -f 2 -d ' '); do rg $f . ; done and manually updated references to renamed files found by that. llvm-svn: 367456