compiler-rt: Rename .cc file in lib/profile to .cpp

See https://reviews.llvm.org/D58620 for discussion.

Note how the comment in the file already said ".cpp" :)

llvm-svn: 367460
This commit is contained in:
Nico Weber 2019-07-31 18:21:08 +00:00
parent 35e6f7550c
commit 62a0585530
4 changed files with 3 additions and 3 deletions

View File

@ -63,7 +63,7 @@ set(PROFILE_SOURCES
InstrProfilingPlatformLinux.c InstrProfilingPlatformLinux.c
InstrProfilingPlatformOther.c InstrProfilingPlatformOther.c
InstrProfilingPlatformWindows.c InstrProfilingPlatformWindows.c
InstrProfilingRuntime.cc InstrProfilingRuntime.cpp
InstrProfilingUtil.c InstrProfilingUtil.c
) )

View File

@ -219,7 +219,7 @@ uint64_t __llvm_profile_get_data_size(const __llvm_profile_data *Begin,
void __llvm_profile_set_dumped(); void __llvm_profile_set_dumped();
/*! /*!
* This variable is defined in InstrProfilingRuntime.cc as a hidden * This variable is defined in InstrProfilingRuntime.cpp as a hidden
* symbol. Its main purpose is to enable profile runtime user to * symbol. Its main purpose is to enable profile runtime user to
* bypass runtime initialization code -- if the client code explicitly * bypass runtime initialization code -- if the client code explicitly
* define this variable, then InstProfileRuntime.o won't be linked in. * define this variable, then InstProfileRuntime.o won't be linked in.

View File

@ -41,7 +41,7 @@ static_library("profile") {
"InstrProfilingPlatformOther.c", "InstrProfilingPlatformOther.c",
"InstrProfilingPlatformWindows.c", "InstrProfilingPlatformWindows.c",
"InstrProfilingPort.h", "InstrProfilingPort.h",
"InstrProfilingRuntime.cc", "InstrProfilingRuntime.cpp",
"InstrProfilingUtil.c", "InstrProfilingUtil.c",
"InstrProfilingUtil.h", "InstrProfilingUtil.h",
"InstrProfilingValue.c", "InstrProfilingValue.c",