From: Nico Weber Date: Fri, 22 Mar 2019 16:34:39 +0000 (+0000) Subject: Make clang-move use same file naming convention as other tools X-Git-Tag: android-x86-9.0-r1~5597 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=b884c5db34642a2c528297fc7eaf1391e54e65ce;p=android-x86%2Fexternal-llvm.git 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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@356780 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/gn/secondary/clang-tools-extra/clang-move/BUILD.gn b/utils/gn/secondary/clang-tools-extra/clang-move/BUILD.gn index b460c048915..896825e2aaa 100644 --- a/utils/gn/secondary/clang-tools-extra/clang-move/BUILD.gn +++ b/utils/gn/secondary/clang-tools-extra/clang-move/BUILD.gn @@ -15,7 +15,7 @@ static_library("clang-move") { "//llvm/lib/Support", ] sources = [ - "ClangMove.cpp", + "Move.cpp", "HelperDeclRefGraph.cpp", ] } diff --git a/utils/gn/secondary/clang-tools-extra/clang-move/tool/BUILD.gn b/utils/gn/secondary/clang-tools-extra/clang-move/tool/BUILD.gn index 904f698c9fb..505462c9843 100644 --- a/utils/gn/secondary/clang-tools-extra/clang-move/tool/BUILD.gn +++ b/utils/gn/secondary/clang-tools-extra/clang-move/tool/BUILD.gn @@ -14,6 +14,6 @@ executable("clang-move") { ] include_dirs = [ ".." ] sources = [ - "ClangMoveMain.cpp", + "ClangMove.cpp", ] }