Rename sancov.cc to sancov.cpp
authorNico Weber <nicolasweber@gmx.de>
Wed, 25 Apr 2018 18:06:23 +0000 (18:06 +0000)
committerNico Weber <nicolasweber@gmx.de>
Wed, 25 Apr 2018 18:06:23 +0000 (18:06 +0000)
LLVM uses cpp as its C++ file ending.
https://reviews.llvm.org/D46068

llvm-svn: 330853

llvm/tools/sancov/CMakeLists.txt
llvm/tools/sancov/sancov.cpp [moved from llvm/tools/sancov/sancov.cc with 99% similarity]

index e92b1fc..2a77072 100644 (file)
@@ -13,5 +13,5 @@ set(LLVM_LINK_COMPONENTS
   )
 
 add_llvm_tool(sancov
-  sancov.cc
+  sancov.cpp
   )
similarity index 99%
rename from llvm/tools/sancov/sancov.cc
rename to llvm/tools/sancov/sancov.cpp
index f3bc635..0bddd35 100644 (file)
@@ -1,4 +1,4 @@
-//===-- sancov.c--------------------------------------------===//
+//===-- 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.
 //===----------------------------------------------------------------------===//