summaryrefslogtreecommitdiffstats
path: root/clang-move/tool
diff options
context:
space:
mode:
Diffstat (limited to 'clang-move/tool')
-rw-r--r--clang-move/tool/CMakeLists.txt2
-rw-r--r--clang-move/tool/ClangMove.cpp (renamed from clang-move/tool/ClangMoveMain.cpp)11
2 files changed, 6 insertions, 7 deletions
diff --git a/clang-move/tool/CMakeLists.txt b/clang-move/tool/CMakeLists.txt
index 6202e150..7bc4f30d 100644
--- a/clang-move/tool/CMakeLists.txt
+++ b/clang-move/tool/CMakeLists.txt
@@ -1,7 +1,7 @@
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
add_clang_executable(clang-move
- ClangMoveMain.cpp
+ ClangMove.cpp
)
target_link_libraries(clang-move
diff --git a/clang-move/tool/ClangMoveMain.cpp b/clang-move/tool/ClangMove.cpp
index f50e973a..807425bb 100644
--- a/clang-move/tool/ClangMoveMain.cpp
+++ b/clang-move/tool/ClangMove.cpp
@@ -1,13 +1,12 @@
-//===-- ClangMoveMain.cpp - move defintion to new file ----------*- C++ -*-===//
+//===-- ClangMove.cpp - move defintion to new file --------------*- C++ -*-===//
//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
-#include "ClangMove.h"
+#include "Move.h"
#include "clang/Frontend/TextDiagnosticPrinter.h"
#include "clang/Rewrite/Core/Rewriter.h"
#include "clang/Tooling/ArgumentsAdjusters.h"