Mercurial > hg > CbC > CbC_llvm
comparison clang/lib/ARCMigrate/ARCMT.cpp @ 252:1f2b6ac9f198 llvm-original
LLVM16-1
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Fri, 18 Aug 2023 09:04:13 +0900 |
parents | c4bab56944e8 |
children |
comparison
equal
deleted
inserted
replaced
237:c80f45b162ad | 252:1f2b6ac9f198 |
---|---|
4 // See https://llvm.org/LICENSE.txt for license information. | 4 // See https://llvm.org/LICENSE.txt for license information. |
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
6 // | 6 // |
7 //===----------------------------------------------------------------------===// | 7 //===----------------------------------------------------------------------===// |
8 | 8 |
9 #include "clang/ARCMigrate/ARCMT.h" | |
9 #include "Internals.h" | 10 #include "Internals.h" |
10 #include "clang/ARCMigrate/ARCMT.h" | |
11 #include "clang/AST/ASTConsumer.h" | 11 #include "clang/AST/ASTConsumer.h" |
12 #include "clang/Basic/DiagnosticCategories.h" | 12 #include "clang/Basic/DiagnosticCategories.h" |
13 #include "clang/Frontend/ASTUnit.h" | 13 #include "clang/Frontend/ASTUnit.h" |
14 #include "clang/Frontend/CompilerInstance.h" | 14 #include "clang/Frontend/CompilerInstance.h" |
15 #include "clang/Frontend/FrontendAction.h" | 15 #include "clang/Frontend/FrontendAction.h" |
18 #include "clang/Lex/Preprocessor.h" | 18 #include "clang/Lex/Preprocessor.h" |
19 #include "clang/Lex/PreprocessorOptions.h" | 19 #include "clang/Lex/PreprocessorOptions.h" |
20 #include "clang/Rewrite/Core/Rewriter.h" | 20 #include "clang/Rewrite/Core/Rewriter.h" |
21 #include "clang/Sema/SemaDiagnostic.h" | 21 #include "clang/Sema/SemaDiagnostic.h" |
22 #include "clang/Serialization/ASTReader.h" | 22 #include "clang/Serialization/ASTReader.h" |
23 #include "llvm/ADT/Triple.h" | |
24 #include "llvm/Support/MemoryBuffer.h" | 23 #include "llvm/Support/MemoryBuffer.h" |
24 #include "llvm/TargetParser/Triple.h" | |
25 #include <utility> | 25 #include <utility> |
26 using namespace clang; | 26 using namespace clang; |
27 using namespace arcmt; | 27 using namespace arcmt; |
28 | 28 |
29 bool CapturedDiagList::clearDiagnostic(ArrayRef<unsigned> IDs, | 29 bool CapturedDiagList::clearDiagnostic(ArrayRef<unsigned> IDs, |