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 07fe10b..fa08958 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 2dce3cf..fcd2703 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 321db12..f9f79c3 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 3d5e3f1..ae4985c 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 () {