diff options
-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. |