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 | 65492d959b17aa428f55bbde72af3f2c14711242 (patch) | |
| tree | 57b0130d66af453adcc90457892ba900dddab9af /compiler-rt/lib/fuzzer/FuzzerTracePC.cpp | |
| parent | b42a1c69672d40e54972274f3302204ec317ef04 (diff) | |
| download | bcm5719-llvm-65492d959b17aa428f55bbde72af3f2c14711242.tar.gz bcm5719-llvm-65492d959b17aa428f55bbde72af3f2c14711242.zip | |
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.
llvm-svn: 367463
Diffstat (limited to 'compiler-rt/lib/fuzzer/FuzzerTracePC.cpp')
| -rw-r--r-- | compiler-rt/lib/fuzzer/FuzzerTracePC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/fuzzer/FuzzerTracePC.cpp b/compiler-rt/lib/fuzzer/FuzzerTracePC.cpp index 4a1308de550..c47357703b9 100644 --- a/compiler-rt/lib/fuzzer/FuzzerTracePC.cpp +++ b/compiler-rt/lib/fuzzer/FuzzerTracePC.cpp @@ -173,7 +173,7 @@ inline ALWAYS_INLINE uintptr_t GetPreviousInstructionPc(uintptr_t PC) { } /// \return the address of the next instruction. -/// Note: the logic is copied from `sanitizer_common/sanitizer_stacktrace.cc` +/// Note: the logic is copied from `sanitizer_common/sanitizer_stacktrace.cpp` ALWAYS_INLINE uintptr_t TracePC::GetNextInstructionPc(uintptr_t PC) { #if defined(__mips__) return PC + 8; |

