diff options
Diffstat (limited to 'compiler-rt/lib/safestack')
-rw-r--r-- | compiler-rt/lib/safestack/CMakeLists.txt | 4 | ||||
-rw-r--r-- | compiler-rt/lib/safestack/safestack.cpp (renamed from compiler-rt/lib/safestack/safestack.cc) | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/compiler-rt/lib/safestack/CMakeLists.txt b/compiler-rt/lib/safestack/CMakeLists.txt index aa259e8d6b6..316ab69ecfd 100644 --- a/compiler-rt/lib/safestack/CMakeLists.txt +++ b/compiler-rt/lib/safestack/CMakeLists.txt @@ -1,6 +1,8 @@ add_compiler_rt_component(safestack) -set(SAFESTACK_SOURCES safestack.cc) +set(SAFESTACK_SOURCES + safestack.cpp + ) include_directories(..) diff --git a/compiler-rt/lib/safestack/safestack.cc b/compiler-rt/lib/safestack/safestack.cpp index f713d5e6871..0751f3988b9 100644 --- a/compiler-rt/lib/safestack/safestack.cc +++ b/compiler-rt/lib/safestack/safestack.cpp @@ -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. |