OSDN Git Service

Update baseline.
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 7 Apr 2009 14:18:00 +0000 (14:18 +0000)
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 7 Apr 2009 14:18:00 +0000 (14:18 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@145674 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/gnat.dg/specs/renamings.ads

index 3b90827..7457952 100644 (file)
@@ -6,9 +6,9 @@ package Renamings is
 
    procedure P (X : Integer) renames Inner.PI;
    procedure P (X : Float);
-   pragma Convention (C, P); -- { dg-error "non-local renaming" }
+   pragma Convention (C, P); -- { dg-error "non-local entity" }
 
    procedure Q (X : Float);
    procedure Q (X : Integer) renames Inner.PI;
-   pragma Convention (C, Q); -- { dg-error "non-local renaming" }
+   pragma Convention (C, Q); -- { dg-error "non-local entity" }
 end Renamings;