diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-07-31 18:51:27 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-07-31 18:51:27 +0000 |
commit | 124fd5d9aff57cf47bf077df81ad939b289acc6e (patch) | |
tree | 340906fb5f85f639f43abcd5b221170d3667f101 /lib/sanitizer_common/sanitizer_tls_get_addr.h | |
parent | 161e951c0ec6aff29998380416fff2070509a6cf (diff) | |
download | compiler-rt-124fd5d9aff57cf47bf077df81ad939b289acc6e.tar.gz |
compiler-rt: Rename .cc file in lib/sanitizer_common to .cpp
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 (many) references to renamed files found by that.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@367463 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/sanitizer_common/sanitizer_tls_get_addr.h')
-rw-r--r-- | lib/sanitizer_common/sanitizer_tls_get_addr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sanitizer_common/sanitizer_tls_get_addr.h b/lib/sanitizer_common/sanitizer_tls_get_addr.h index cc178d3d1..c7cd5a8bf 100644 --- a/lib/sanitizer_common/sanitizer_tls_get_addr.h +++ b/lib/sanitizer_common/sanitizer_tls_get_addr.h @@ -42,7 +42,7 @@ struct DTLS { uptr dtv_size; DTV *dtv; // dtv_size elements, allocated by MmapOrDie. - // Auxiliary fields, don't access them outside sanitizer_tls_get_addr.cc + // Auxiliary fields, don't access them outside sanitizer_tls_get_addr.cpp uptr last_memalign_size; uptr last_memalign_ptr; }; |