summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-02-25 17:39:16 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-02-25 17:39:16 +0000
commit8e38871865530e38c1a9740443a73ac07957e7dc (patch)
tree0d2337c453557f07a7478b0697692e88d4abadaf
parent50e3b7f759d2087e426a6f67927c025ed0de7c36 (diff)
downloadbcm5719-llvm-8e38871865530e38c1a9740443a73ac07957e7dc.tar.gz
bcm5719-llvm-8e38871865530e38c1a9740443a73ac07957e7dc.zip
Revert "Pretty Printer: Fix printing of conversion operator decls and calls."
This reverts commit r202167. It broke Analysis/auto-obj-dtors-cfg-output.cpp llvm-svn: 202173
-rw-r--r--clang/lib/AST/DeclPrinter.cpp10
-rw-r--r--clang/lib/AST/DeclarationName.cpp2
-rw-r--r--clang/lib/AST/StmtPrinter.cpp6
-rw-r--r--clang/test/SemaCXX/ast-print.cpp25
4 files changed, 5 insertions, 38 deletions
diff --git a/clang/lib/AST/DeclPrinter.cpp b/clang/lib/AST/DeclPrinter.cpp
index 05701a5b061..aa753887a21 100644
--- a/clang/lib/AST/DeclPrinter.cpp
+++ b/clang/lib/AST/DeclPrinter.cpp
@@ -385,7 +385,6 @@ void DeclPrinter::VisitEnumConstantDecl(EnumConstantDecl *D) {
void DeclPrinter::VisitFunctionDecl(FunctionDecl *D) {
CXXConstructorDecl *CDecl = dyn_cast<CXXConstructorDecl>(D);
- CXXConversionDecl *ConversionDecl = dyn_cast<CXXConversionDecl>(D);
if (!Policy.SuppressSpecifiers) {
switch (D->getStorageClass()) {
case SC_None: break;
@@ -399,8 +398,7 @@ void DeclPrinter::VisitFunctionDecl(FunctionDecl *D) {
if (D->isInlineSpecified()) Out << "inline ";
if (D->isVirtualAsWritten()) Out << "virtual ";
if (D->isModulePrivate()) Out << "__module_private__ ";
- if ((CDecl && CDecl->isExplicitSpecified()) ||
- (ConversionDecl && ConversionDecl->isExplicit()))
+ if (CDecl && CDecl->isExplicitSpecified())
Out << "explicit ";
}
@@ -538,15 +536,15 @@ void DeclPrinter::VisitFunctionDecl(FunctionDecl *D) {
}
Out << ")";
}
- } else if (!ConversionDecl) {
+ if (!Proto.empty())
+ Out << Proto;
+ } else {
if (FT && FT->hasTrailingReturn()) {
Out << "auto " << Proto << " -> ";
Proto.clear();
}
AFT->getReturnType().print(Out, Policy, Proto);
- Proto.clear();
}
- Out << Proto;
} else {
Ty.print(Out, Policy, Proto);
}
diff --git a/clang/lib/AST/DeclarationName.cpp b/clang/lib/AST/DeclarationName.cpp
index f9041c043c9..e5019ab8d9f 100644
--- a/clang/lib/AST/DeclarationName.cpp
+++ b/clang/lib/AST/DeclarationName.cpp
@@ -191,7 +191,6 @@ raw_ostream &operator<<(raw_ostream &OS, DeclarationName N) {
return OS << *Rec->getDecl();
LangOptions LO;
LO.CPlusPlus = true;
- LO.Bool = true;
return OS << Type.getAsString(PrintingPolicy(LO));
}
case DeclarationName::CXXUsingDirective:
@@ -547,7 +546,6 @@ void DeclarationNameInfo::printName(raw_ostream &OS) const {
OS << "operator ";
LangOptions LO;
LO.CPlusPlus = true;
- LO.Bool = true;
OS << TInfo->getType().getAsString(PrintingPolicy(LO));
} else
OS << Name;
diff --git a/clang/lib/AST/StmtPrinter.cpp b/clang/lib/AST/StmtPrinter.cpp
index a9f49990ee5..8ed2987e6dd 100644
--- a/clang/lib/AST/StmtPrinter.cpp
+++ b/clang/lib/AST/StmtPrinter.cpp
@@ -1296,12 +1296,6 @@ void StmtPrinter::VisitCXXOperatorCallExpr(CXXOperatorCallExpr *Node) {
}
void StmtPrinter::VisitCXXMemberCallExpr(CXXMemberCallExpr *Node) {
- // If we have a conversion operator call only print the argument.
- CXXMethodDecl *MD = Node->getMethodDecl();
- if (MD && isa<CXXConversionDecl>(MD)) {
- PrintExpr(Node->getImplicitObjectArgument());
- return;
- }
VisitCallExpr(cast<CallExpr>(Node));
}
diff --git a/clang/test/SemaCXX/ast-print.cpp b/clang/test/SemaCXX/ast-print.cpp
index 3d98fd8ef3a..977ba7afa4d 100644
--- a/clang/test/SemaCXX/ast-print.cpp
+++ b/clang/test/SemaCXX/ast-print.cpp
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -ast-print %s -std=gnu++11 | FileCheck %s
+// RUN: %clang_cc1 -ast-print %s | FileCheck %s
// CHECK: r;
// CHECK-NEXT: (r->method());
@@ -173,26 +173,3 @@ void test14() {
float test15() {
return __builtin_asinf(1.0F);
}
-
-namespace PR18776 {
-struct A {
- operator void *();
- explicit operator bool();
- A operator&(A);
-};
-
-// CHECK: struct A
-// CHECK-NEXT: {{^[ ]*operator}} void *();
-// CHECK-NEXT: {{^[ ]*explicit}} operator bool();
-
-void bar(void *);
-
-void foo() {
- A a, b;
- bar(a & b);
-// CHECK: bar(a & b);
- if (a & b)
-// CHECK: if (a & b)
- return;
-}
-};
OpenPOWER on IntegriCloud