[DFAJumpThreading] Remove incoming StartBlock from all phis when unfolding select...
[llvm-project.git] / clang / lib / StaticAnalyzer / Checkers / WebKit / DiagOutputUtils.h
blob781a8d746001fb234b60ec96d5a32830eec2f9db
1 //=======- DiagOutputUtils.h -------------------------------------*- C++ -*-==//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_CLANG_ANALYZER_WEBKIT_DIAGPRINTUTILS_H
10 #define LLVM_CLANG_ANALYZER_WEBKIT_DIAGPRINTUTILS_H
12 #include "clang/AST/Decl.h"
13 #include "llvm/Support/raw_ostream.h"
15 namespace clang {
17 template <typename NamedDeclDerivedT>
18 void printQuotedQualifiedName(llvm::raw_ostream &Os,
19 const NamedDeclDerivedT &D) {
20 Os << "'";
21 D->getNameForDiagnostic(Os, D->getASTContext().getPrintingPolicy(),
22 /*Qualified=*/true);
23 Os << "'";
26 template <typename NamedDeclDerivedT>
27 void printQuotedName(llvm::raw_ostream &Os, const NamedDeclDerivedT &D) {
28 Os << "'";
29 D->getNameForDiagnostic(Os, D->getASTContext().getPrintingPolicy(),
30 /*Qualified=*/false);
31 Os << "'";
34 } // namespace clang
36 #endif