]> granicus.if.org Git - clang/commitdiff
Use the type as written when pretty-printing C-style casts. Patch by Grzegorz Jablonski.
authorEli Friedman <eli.friedman@gmail.com>
Thu, 18 Oct 2012 21:53:46 +0000 (21:53 +0000)
committerEli Friedman <eli.friedman@gmail.com>
Thu, 18 Oct 2012 21:53:46 +0000 (21:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166237 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/StmtPrinter.cpp
test/SemaCXX/ast-print.cpp

index d7392af808ea26a69e2f9d852ac1e477934ea2de..5d3b83a150503de48ea16bac23328d881e62d605 100644 (file)
@@ -936,7 +936,7 @@ void StmtPrinter::VisitExtVectorElementExpr(ExtVectorElementExpr *Node) {
   OS << Node->getAccessor().getName();
 }
 void StmtPrinter::VisitCStyleCastExpr(CStyleCastExpr *Node) {
-  OS << "(" << Node->getType().getAsString(Policy) << ")";
+  OS << "(" << Node->getTypeAsWritten().getAsString(Policy) << ")";
   PrintExpr(Node->getSubExpr());
 }
 void StmtPrinter::VisitCompoundLiteralExpr(CompoundLiteralExpr *Node) {
index 15fdabfe32fa0df663cfed6908560bcc05c31213..5e89c8b548847d38c7f7198c01b7e2426909fb51 100644 (file)
@@ -13,8 +13,7 @@ struct Reference
     MyClass* operator ->() { return object; }
 };
 
-int main()
-{
+void test1() {
     Reference r;
     (r->method());
 }
@@ -23,7 +22,7 @@ int main()
 // CHECK:  while (int a = 1)
 // CHECK:  switch (int a = 1)
 
-void f()
+void test2()
 {
     if (int a = 1) { }
     while (int a = 1) { }
@@ -32,7 +31,7 @@ void f()
 
 // CHECK: new (1) int;
 void *operator new (typeof(sizeof(1)), int, int = 2);
-void f2() {
+void test3() {
   new (1) int;
 }
 
@@ -40,9 +39,16 @@ void f2() {
 struct X {
   void *operator new (typeof(sizeof(1)), int = 2);
 };
-void f2() { new X; }
+void test4() { new X; }
 
 // CHECK: for (int i = 2097, j = 42; false;)
-void forInit() {
+void test5() {
   for (int i = 2097, j = 42; false;) {}
 }
+
+// CHECK: test6fn((int &)y);
+void test6fn(int& x);
+void test6() {
+    unsigned int y = 0;
+    test6fn((int&)y);
+}