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
This commit is contained in:
Nico Weber 2019-07-31 18:01:55 +00:00
parent 07b1a2b9ae
commit ebbce04c14
5 changed files with 8 additions and 8 deletions

View File

@ -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

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.