From 4264a3891657400913b1b8b59cb37157d9412619 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 llvm-svn: 330853 --- llvm/tools/sancov/CMakeLists.txt | 2 +- llvm/tools/sancov/{sancov.cc => sancov.cpp} | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) rename llvm/tools/sancov/{sancov.cc => sancov.cpp} (99%) diff --git a/llvm/tools/sancov/CMakeLists.txt b/llvm/tools/sancov/CMakeLists.txt index e92b1fc..2a77072 100644 --- a/llvm/tools/sancov/CMakeLists.txt +++ b/llvm/tools/sancov/CMakeLists.txt @@ -13,5 +13,5 @@ set(LLVM_LINK_COMPONENTS ) add_llvm_tool(sancov - sancov.cc + sancov.cpp ) diff --git a/llvm/tools/sancov/sancov.cc b/llvm/tools/sancov/sancov.cpp similarity index 99% rename from llvm/tools/sancov/sancov.cc rename to llvm/tools/sancov/sancov.cpp index f3bc635..0bddd35 100644 --- a/llvm/tools/sancov/sancov.cc +++ b/llvm/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.7.4