OSDN Git Service

Make clang-move use same file naming convention as other tools
authorNico Weber <nicolasweber@gmx.de>
Fri, 22 Mar 2019 16:34:39 +0000 (16:34 +0000)
committerNico Weber <nicolasweber@gmx.de>
Fri, 22 Mar 2019 16:34:39 +0000 (16:34 +0000)
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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@356780 91177308-0d34-0410-b5e6-96231b3b80d8

utils/gn/secondary/clang-tools-extra/clang-move/BUILD.gn
utils/gn/secondary/clang-tools-extra/clang-move/tool/BUILD.gn

index b460c04..896825e 100644 (file)
@@ -15,7 +15,7 @@ static_library("clang-move") {
     "//llvm/lib/Support",
   ]
   sources = [
-    "ClangMove.cpp",
+    "Move.cpp",
     "HelperDeclRefGraph.cpp",
   ]
 }
index 904f698..505462c 100644 (file)
@@ -14,6 +14,6 @@ executable("clang-move") {
   ]
   include_dirs = [ ".." ]
   sources = [
-    "ClangMoveMain.cpp",
+    "ClangMove.cpp",
   ]
 }