From: Matthew Heaney Date: Mon, 29 Aug 2011 14:21:27 +0000 (+0000) Subject: a-cbhama.ads, [...] (Move): Clear Source following assignment to Target. X-Git-Tag: releases/gcc-4.7.0~4149 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dfbf013faf211971823f83c39648ad98d2b557b5;p=thirdparty%2Fgcc.git a-cbhama.ads, [...] (Move): Clear Source following assignment to Target. 2011-08-29 Matthew Heaney * a-cbhama.ads, a-cbhase.ads (Move): Clear Source following assignment to Target. 2011-08-29 Matthew Heaney * a-cborma.ads, a-cborse.ads (Cursor): Default-initialize all components of record type. * a-cborma.adb, a-cborse.adb (Move): Clear Source following assignmentw to Target. From-SVN: r178243 --- diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 048bdce204f2..ca82e7b1b852 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,15 @@ +2011-08-29 Matthew Heaney + + * a-cbhama.ads, a-cbhase.ads (Move): Clear Source following assignment + to Target. + +2011-08-29 Matthew Heaney + + * a-cborma.ads, a-cborse.ads (Cursor): Default-initialize all + components of record type. + * a-cborma.adb, a-cborse.adb (Move): Clear Source following assignmentw + to Target. + 2011-08-29 Ed Schonberg * a-cbhama.adb, a-cbhama.ads, a-cborma.adb, a-cborma.ads, a-cobove.adb, diff --git a/gcc/ada/a-cbhama.adb b/gcc/ada/a-cbhama.adb index 195d07c268eb..f71a9a552b00 100644 --- a/gcc/ada/a-cbhama.adb +++ b/gcc/ada/a-cbhama.adb @@ -728,7 +728,8 @@ package body Ada.Containers.Bounded_Hashed_Maps is "attempt to tamper with cursors (container is busy)"; end if; - Assign (Target => Target, Source => Source); + Target.Assign (Source); + Source.Clear; end Move; ---------- diff --git a/gcc/ada/a-cbhase.adb b/gcc/ada/a-cbhase.adb index e477690d9977..3b85e2effefe 100644 --- a/gcc/ada/a-cbhase.adb +++ b/gcc/ada/a-cbhase.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 2004-2010, Free Software Foundation, Inc. -- +-- Copyright (C) 2004-2011, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -925,7 +925,8 @@ package body Ada.Containers.Bounded_Hashed_Sets is "attempt to tamper with cursors (container is busy)"; end if; - Assign (Target => Target, Source => Source); + Target.Assign (Source); + Source.Clear; end Move; ---------- diff --git a/gcc/ada/a-cborma.adb b/gcc/ada/a-cborma.adb index 344f11dfe14c..c9a476508af6 100644 --- a/gcc/ada/a-cborma.adb +++ b/gcc/ada/a-cborma.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 2004-2010, Free Software Foundation, Inc. -- +-- Copyright (C) 2004-2011, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -998,7 +998,8 @@ package body Ada.Containers.Bounded_Ordered_Maps is "attempt to tamper with cursors (container is busy)"; end if; - Assign (Target => Target, Source => Source); + Target.Assign (Source); + Source.Clear; end Move; ---------- diff --git a/gcc/ada/a-cborma.ads b/gcc/ada/a-cborma.ads index 6be977781d46..c0c160b72f41 100644 --- a/gcc/ada/a-cborma.ads +++ b/gcc/ada/a-cborma.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 2004-2010, Free Software Foundation, Inc. -- +-- Copyright (C) 2004-2011, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- @@ -264,7 +264,7 @@ private type Cursor is record Container : Map_Access; - Node : Count_Type; + Node : Count_Type := 0; end record; procedure Write diff --git a/gcc/ada/a-cborse.adb b/gcc/ada/a-cborse.adb index 12d253c648fd..4a4bc71d416d 100644 --- a/gcc/ada/a-cborse.adb +++ b/gcc/ada/a-cborse.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 2004-2010, Free Software Foundation, Inc. -- +-- Copyright (C) 2004-2011, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -1244,7 +1244,8 @@ package body Ada.Containers.Bounded_Ordered_Sets is "attempt to tamper with cursors (container is busy)"; end if; - Assign (Target => Target, Source => Source); + Target.Assign (Source); + Source.Clear; end Move; ---------- diff --git a/gcc/ada/a-cborse.ads b/gcc/ada/a-cborse.ads index f9719dcdbc63..24b8bdc6e934 100644 --- a/gcc/ada/a-cborse.ads +++ b/gcc/ada/a-cborse.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 2004-2010, Free Software Foundation, Inc. -- +-- Copyright (C) 2004-2011, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- @@ -257,7 +257,7 @@ private type Cursor is record Container : Set_Access; - Node : Count_Type; + Node : Count_Type := 0; end record; use Tree_Types;