c-ada-spec.c (dump_ada_double_name): Fix pasto.
authorEric Botcazou <ebotcazou@adacore.com>
Fri, 6 Mar 2015 10:15:03 +0000 (10:15 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Fri, 6 Mar 2015 10:15:03 +0000 (10:15 +0000)
* c-ada-spec.c (dump_ada_double_name): Fix pasto.

Co-Authored-By: Jonathan Wakely <jwakely.gcc@gmail.com>
From-SVN: r221231

gcc/c-family/ChangeLog
gcc/c-family/c-ada-spec.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/other/dump-ada-spec-3.C

index 07fe10bf139c7a32912393061238f768bfb7575f..fa08958ac6cdea11f8a4b13f694da73c4b23ff46 100644 (file)
@@ -1,3 +1,8 @@
+2015-03-06  Eric Botcazou  <ebotcazou@adacore.com>
+            Jonathan Wakely  <jwakely.gcc@gmail.com>
+
+       * c-ada-spec.c (dump_ada_double_name): Fix pasto.
+
 2015-03-05  Eric Botcazou  <ebotcazou@adacore.com>
 
        PR ada/65319
index 2dce3cf0cb8ad76662e2bd1ea22c78dcca5ad1bf..fcd27037d528f897a95349e1548beed413c91659 100644 (file)
@@ -1390,7 +1390,7 @@ dump_ada_double_name (pretty_printer *buffer, tree t1, tree t2, const char *s)
 
   pp_underscore (buffer);
 
-  if (DECL_NAME (t1))
+  if (DECL_NAME (t2))
     pp_ada_tree_identifier (buffer, DECL_NAME (t2), t2, false);
   else
     {
index 321db122f76632dfa39e94dd2df944e00443a159..f9f79c315966d047f0ea9e2d4251e2e8a76cd60a 100644 (file)
@@ -1,3 +1,7 @@
+2015-03-06  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * g++.dg/other/dump-ada-spec-3.C: Remove include and adjust.
+
 2015-03-05  Bernd Edlinger  <bernd.edlinger@hotmail.de>
 
        * gcc.target/arm/pr65067.c: New test.
index 3d5e3f10dfcc5435cca12adac447bbd82cf1594b..ae4985cb594c87043c0cafbf096ade3249a06dcc 100644 (file)
@@ -1,8 +1,6 @@
 /* { dg-do compile } */
 /* { dg-options "-fdump-ada-spec" } */
 
-#include <iostream>
-
 using namespace std;
 
 class Base {
@@ -14,7 +12,6 @@ class Base {
 };
 
 void Base::Primitive () {
-  cout << "C++ Primitive  " << this->My_V << "\n";
 }
 
 Base::Base () {