mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-14 03:29:57 +00:00
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:
parent
b47455b573
commit
9642e337eb
@ -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)
|
||||
|
||||
|
@ -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.
|
@ -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.
|
@ -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.
|
@ -1,6 +1,8 @@
|
||||
add_compiler_rt_component(safestack)
|
||||
|
||||
set(SAFESTACK_SOURCES safestack.cc)
|
||||
set(SAFESTACK_SOURCES
|
||||
safestack.cpp
|
||||
)
|
||||
|
||||
include_directories(..)
|
||||
|
||||
|
@ -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.
|
Loading…
Reference in New Issue
Block a user