Make clang-move use same file naming convention as other tools

In all the other clang-foo tools, the main library file is called
Foo.cpp and the file in the tool/ folder is called ClangFoo.cpp.
Do this for clang-move too.

No intended behavior change.

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

llvm-svn: 356780
This commit is contained in:
Nico Weber 2019-03-22 16:34:39 +00:00
parent d0894568d5
commit f978aa441a
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ static_library("clang-move") {
"//llvm/lib/Support",
]
sources = [
"ClangMove.cpp",
"Move.cpp",
"HelperDeclRefGraph.cpp",
]
}

View File

@ -14,6 +14,6 @@ executable("clang-move") {
]
include_dirs = [ ".." ]
sources = [
"ClangMoveMain.cpp",
"ClangMove.cpp",
]
}