[XRay][tools] Rename llvm-xray filenames from .cc -> .cpp (NFC)

Summary:
This brings the filenames in accordance to the style guide and LLVM
conventions for C++ filenames.

As suggested by rnk@ in D46068.

Reviewers: rnk

Subscribers: mgorny, mgrang, llvm-commits

Differential Revision: https://reviews.llvm.org/D46301

llvm-svn: 331321
This commit is contained in:
Dean Michael Berris 2018-05-02 00:43:17 +00:00
parent d1f0910a54
commit a0e3ae4ce0
11 changed files with 19 additions and 19 deletions

View File

@ -7,14 +7,14 @@ set(LLVM_LINK_COMPONENTS
XRay)
set(LLVM_XRAY_TOOLS
func-id-helper.cc
xray-account.cc
xray-color-helper.cc
xray-converter.cc
xray-extract.cc
xray-graph.cc
xray-graph-diff.cc
xray-stacks.cc
xray-registry.cc)
func-id-helper.cpp
xray-account.cpp
xray-color-helper.cpp
xray-converter.cpp
xray-extract.cpp
xray-graph.cpp
xray-graph-diff.cpp
xray-stacks.cpp
xray-registry.cpp)
add_llvm_tool(llvm-xray llvm-xray.cc ${LLVM_XRAY_TOOLS})
add_llvm_tool(llvm-xray llvm-xray.cpp ${LLVM_XRAY_TOOLS})

View File

@ -1,4 +1,4 @@
//===- xray-fc-account.cc - XRay Function Call Accounting Tool ------------===//
//===- xray-fc-account.cpp: XRay Function Call Accounting Tool ------------===//
//
// The LLVM Compiler Infrastructure
//

View File

@ -1,4 +1,4 @@
//===- llvm-xray.cc - XRay Tool Main Program ------------------------------===//
//===- llvm-xray.cpp: XRay Tool Main Program ------------------------------===//
//
// The LLVM Compiler Infrastructure
//

View File

@ -1,4 +1,4 @@
//===-- xray-graph.cc - XRay Function Call Graph Renderer -----------------===//
//===-- xray-graph.cpp: XRay Function Call Graph Renderer -----------------===//
//
// The LLVM Compiler Infrastructure
//

View File

@ -1,4 +1,4 @@
//===- xray-converter.cc - XRay Trace Conversion --------------------------===//
//===- xray-converter.cpp: XRay Trace Conversion --------------------------===//
//
// The LLVM Compiler Infrastructure
//

View File

@ -1,4 +1,4 @@
//===- xray-extract.cc - XRay Instrumentation Map Extraction --------------===//
//===- xray-extract.cpp: XRay Instrumentation Map Extraction --------------===//
//
// The LLVM Compiler Infrastructure
//

View File

@ -1,4 +1,4 @@
//===-- xray-graph-diff.cc - XRay Function Call Graph Renderer ------------===//
//===-- xray-graph-diff.cpp: XRay Function Call Graph Renderer ------------===//
//
// The LLVM Compiler Infrastructure
//

View File

@ -1,4 +1,4 @@
//===-- xray-graph.cc - XRay Function Call Graph Renderer -----------------===//
//===-- xray-graph.cpp: XRay Function Call Graph Renderer -----------------===//
//
// The LLVM Compiler Infrastructure
//

View File

@ -1,4 +1,4 @@
//===- xray-registry.cc - Implement a command registry. -------------------===//
//===- xray-registry.cpp: Implement a command registry. -------------------===//
//
// The LLVM Compiler Infrastructure
//

View File

@ -1,4 +1,4 @@
//===- xray-stacks.cc - XRay Function Call Stack Accounting ---------------===//
//===- xray-stacks.cpp: XRay Function Call Stack Accounting ---------------===//
//
// The LLVM Compiler Infrastructure
//