summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/sanitizer_common/tests/sanitizer_common_test.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [sanitizer] Construct InternalMmapVector without memory allocation.Igor Kudrin2019-12-171-1/+1
| | | | | | | | | Construction of InternalMmapVector is often followed by a call to reserve(), which may result in immediate reallocation of the memory for the internal storage. This patch delays that allocation until it is really needed. Differential Revision: https://reviews.llvm.org/D71342
* compiler-rt: Rename .cc file in lib/sanitizer_common/tests to .cppNico Weber2019-07-311-0/+449
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 $(basename $f) . ; done and manually updated references to renamed files found by that. llvm-svn: 367467
OpenPOWER on IntegriCloud