diff options
author | Edwin Vane <edwin.vane@intel.com> | 2013-08-22 13:07:14 +0000 |
---|---|---|
committer | Edwin Vane <edwin.vane@intel.com> | 2013-08-22 13:07:14 +0000 |
commit | 3bf14cebee461f4f6be4164f366a301e4f789f81 (patch) | |
tree | 0bff4b37a5896386f3f06ce1c42177feac44d40f /clang-tools-extra/Makefile | |
parent | 1c34afcb613f8eafcb9e40b492fbcb743b4fb94c (diff) | |
download | bcm5719-llvm-3bf14cebee461f4f6be4164f366a301e4f789f81.tar.gz bcm5719-llvm-3bf14cebee461f4f6be4164f366a301e4f789f81.zip |
Introducing new tool clang-replace
Introducing new tool 'clang-replace' that finds files containing
serialized Replacements and applies those changes after deduplication
and detecting conflicts.
Currently the tool does not apply changes. It stops just after the
deduplication and conflict report phase. Forthcoming patches will
complete functionality.
Both build systems updated for new tool.
Includes a conflict test case.
clang-replace added to Doxygen build.
Differential Revision: http://llvm-reviews.chandlerc.com/D1424
llvm-svn: 189008
Diffstat (limited to 'clang-tools-extra/Makefile')
-rw-r--r-- | clang-tools-extra/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/Makefile b/clang-tools-extra/Makefile index 33897d64a03..2bdbd1c4392 100644 --- a/clang-tools-extra/Makefile +++ b/clang-tools-extra/Makefile @@ -12,7 +12,7 @@ CLANG_LEVEL := ../.. include $(CLANG_LEVEL)/../../Makefile.config PARALLEL_DIRS := remove-cstr-calls tool-template modularize -DIRS := cpp11-migrate clang-tidy unittests +DIRS := cpp11-migrate clang-tidy clang-replace unittests include $(CLANG_LEVEL)/Makefile |