From 5fc3ea70fc4df35891e45711688e576d3c6d7ec2 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Wed, 25 Apr 2018 18:06:23 +0000 Subject: [PATCH] Rename sancov.cc to sancov.cpp LLVM uses cpp as its C++ file ending. https://reviews.llvm.org/D46068 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@330853 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/sancov/CMakeLists.txt | 2 +- tools/sancov/{sancov.cc => sancov.cpp} | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) rename tools/sancov/{sancov.cc => sancov.cpp} (99%) diff --git a/tools/sancov/CMakeLists.txt b/tools/sancov/CMakeLists.txt index e92b1fcbb86..2a770728933 100644 --- a/tools/sancov/CMakeLists.txt +++ b/tools/sancov/CMakeLists.txt @@ -13,5 +13,5 @@ set(LLVM_LINK_COMPONENTS ) add_llvm_tool(sancov - sancov.cc + sancov.cpp ) diff --git a/tools/sancov/sancov.cc b/tools/sancov/sancov.cpp similarity index 99% rename from tools/sancov/sancov.cc rename to tools/sancov/sancov.cpp index f3bc635dde8..0bddd35a96f 100644 --- a/tools/sancov/sancov.cc +++ b/tools/sancov/sancov.cpp @@ -1,4 +1,4 @@ -//===-- sancov.cc --------------------------------------------===// +//===-- sancov.cpp --------------------------------------------------------===// // // The LLVM Compiler Infrastructure // @@ -6,7 +6,6 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// // This file is a command-line tool for reading and analyzing sanitizer // coverage. //===----------------------------------------------------------------------===// -- 2.11.0