forked from OSchip/llvm-project
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:
parent
07b1a2b9ae
commit
ebbce04c14
|
@ -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
|
||||
|
|
|
@ -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.
|
|
@ -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.
|
|
@ -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.
|
|
@ -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.
|
Loading…
Reference in New Issue