compiler-rt: Rename .cc file in lib/{interception/tests,safestack} to .cpp

Like r367463, but for interception/tests and safestack.

llvm-svn: 367560
This commit is contained in:
Nico Weber 2019-08-01 13:56:52 +00:00
parent b47455b573
commit 9642e337eb
6 changed files with 11 additions and 9 deletions

View File

@ -3,10 +3,10 @@ include(CompilerRTCompile)
filter_available_targets(INTERCEPTION_UNITTEST_SUPPORTED_ARCH x86_64 i386 mips64 mips64el)
set(INTERCEPTION_UNITTESTS
interception_linux_test.cc
interception_test_main.cc
interception_win_test.cc
)
interception_linux_test.cpp
interception_test_main.cpp
interception_win_test.cpp
)
set(INTERCEPTION_TEST_HEADERS)

View File

@ -1,4 +1,4 @@
//===-- interception_linux_test.cc ----------------------------------------===//
//===-- interception_linux_test.cpp ---------------------------------------===//
//
// 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_test_main.cc------------------------------------------===//
//===-- interception_test_main.cpp ----------------------------------------===//
//
// 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_win_test.cc ------------------------------------------===//
//===-- interception_win_test.cpp -----------------------------------------===//
//
// 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,6 +1,8 @@
add_compiler_rt_component(safestack)
set(SAFESTACK_SOURCES safestack.cc)
set(SAFESTACK_SOURCES
safestack.cpp
)
include_directories(..)

View File

@ -1,4 +1,4 @@
//===-- safestack.cc ------------------------------------------------------===//
//===-- safestack.cpp -----------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.