diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-07-31 18:01:55 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-07-31 18:01:55 +0000 |
commit | ebbce04c14bbbed3c73e3ac32b49f49fd5743aa1 (patch) | |
tree | 855d8aef4237550b718ac1c2b43fa00b622e0b28 /compiler-rt | |
parent | 07b1a2b9ae12604566fd35f9f4f4a9230466b62b (diff) | |
download | bcm5719-llvm-ebbce04c14bbbed3c73e3ac32b49f49fd5743aa1.tar.gz bcm5719-llvm-ebbce04c14bbbed3c73e3ac32b49f49fd5743aa1.zip |
compiler-rt: Rename .cc files in lib/interception 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 references to renamed files found by that.
llvm-svn: 367456
Diffstat (limited to 'compiler-rt')
-rw-r--r-- | compiler-rt/lib/interception/CMakeLists.txt | 8 | ||||
-rw-r--r-- | compiler-rt/lib/interception/interception_linux.cpp (renamed from compiler-rt/lib/interception/interception_linux.cc) | 2 | ||||
-rw-r--r-- | compiler-rt/lib/interception/interception_mac.cpp (renamed from compiler-rt/lib/interception/interception_mac.cc) | 2 | ||||
-rw-r--r-- | compiler-rt/lib/interception/interception_type_test.cpp (renamed from compiler-rt/lib/interception/interception_type_test.cc) | 2 | ||||
-rw-r--r-- | compiler-rt/lib/interception/interception_win.cpp (renamed from compiler-rt/lib/interception/interception_win.cc) | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/compiler-rt/lib/interception/CMakeLists.txt b/compiler-rt/lib/interception/CMakeLists.txt index 7f0de81892f..58ae79902c7 100644 --- a/compiler-rt/lib/interception/CMakeLists.txt +++ b/compiler-rt/lib/interception/CMakeLists.txt @@ -1,10 +1,10 @@ # Build for the runtime interception helper library. set(INTERCEPTION_SOURCES - interception_linux.cc - interception_mac.cc - interception_win.cc - interception_type_test.cc + interception_linux.cpp + interception_mac.cpp + interception_win.cpp + interception_type_test.cpp ) set(INTERCEPTION_HEADERS diff --git a/compiler-rt/lib/interception/interception_linux.cc b/compiler-rt/lib/interception/interception_linux.cpp index 4b27102a159..950cd512653 100644 --- a/compiler-rt/lib/interception/interception_linux.cc +++ b/compiler-rt/lib/interception/interception_linux.cpp @@ -1,4 +1,4 @@ -//===-- interception_linux.cc -----------------------------------*- C++ -*-===// +//===-- interception_linux.cpp ----------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/interception/interception_mac.cc b/compiler-rt/lib/interception/interception_mac.cpp index 5bfc1514d2b..fb6eadcff59 100644 --- a/compiler-rt/lib/interception/interception_mac.cc +++ b/compiler-rt/lib/interception/interception_mac.cpp @@ -1,4 +1,4 @@ -//===-- interception_mac.cc -------------------------------------*- C++ -*-===// +//===-- interception_mac.cpp ------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/interception/interception_type_test.cc b/compiler-rt/lib/interception/interception_type_test.cpp index c00294a9b47..a611604a700 100644 --- a/compiler-rt/lib/interception/interception_type_test.cc +++ b/compiler-rt/lib/interception/interception_type_test.cpp @@ -1,4 +1,4 @@ -//===-- interception_type_test.cc -------------------------------*- C++ -*-===// +//===-- interception_type_test.cpp ------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/interception/interception_win.cc b/compiler-rt/lib/interception/interception_win.cpp index 40bde008052..b94e214fdff 100644 --- a/compiler-rt/lib/interception/interception_win.cc +++ b/compiler-rt/lib/interception/interception_win.cpp @@ -1,4 +1,4 @@ -//===-- interception_linux.cc -----------------------------------*- C++ -*-===// +//===-- interception_linux.cpp ----------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. |