a-stzfix.adb, [...] (Replace_Slice): Fixed computation when High is above Source...
authorVincent Celier <celier@adacore.com>
Mon, 1 Aug 2011 10:15:08 +0000 (10:15 +0000)
committerArnaud Charlet <charlet@gcc.gnu.org>
Mon, 1 Aug 2011 10:15:08 +0000 (12:15 +0200)
2011-08-01  Vincent Celier  <celier@adacore.com>

* a-stzfix.adb, a-stwifi.adb (Replace_Slice): Fixed computation when
High is above Source length.

From-SVN: r177007

gcc/ada/ChangeLog
gcc/ada/a-stwifi.adb
gcc/ada/a-stzfix.adb

index f8cebbace6cbe4b5ffca9360c530bd9e9c1dcb39..e9de33682589826bb6d16f2e0dc0c3249f00c397 100644 (file)
@@ -1,3 +1,8 @@
+2011-08-01  Vincent Celier  <celier@adacore.com>
+
+       * a-stzfix.adb, a-stwifi.adb (Replace_Slice): Fixed computation when
+       High is above Source length.
+
 2011-08-01  Robert Dewar  <dewar@adacore.com>
 
        * a-ztexio.ads, a-textio.ads, a-witeio.ads: Fix comment.
index c4229062424cc1e9dc63fd316b19d3713f191883..31278505b8a06cfbee5576bb1ffd7d1b6e2da66b 100644 (file)
@@ -447,30 +447,40 @@ package body Ada.Strings.Wide_Fixed is
       High   : Natural;
       By     : Wide_String) return Wide_String
    is
-      Result_Length : Natural;
-
    begin
       if Low > Source'Last + 1 or else High < Source'First - 1 then
          raise Index_Error;
-      else
-         Result_Length :=
-           Source'Length - Natural'Max (High - Low + 1, 0) + By'Length;
+      end if;
 
+      if High >= Low then
          declare
-            Result : Wide_String (1 .. Result_Length);
+            Front_Len : constant Integer :=
+              Integer'Max (0, Low - Source'First);
+            --  Length of prefix of Source copied to result
+
+            Back_Len  : constant Integer :=
+              Integer'Max (0, Source'Last - High);
+            --  Length of suffix of Source copied to result
+
+            Result_Length : constant Integer :=
+              Front_Len + By'Length + Back_Len;
+            --  Length of result
+
+            Result    : Wide_String (1 .. Result_Length);
 
          begin
-            if High >= Low then
-               Result :=
-                  Source (Source'First .. Low - 1) & By &
-                  Source (High + 1 .. Source'Last);
-            else
-               Result := Source (Source'First .. Low - 1) & By &
-                         Source (Low .. Source'Last);
-            end if;
+            Result (1 .. Front_Len) :=
+              Source (Source'First .. Low - 1);
+            Result (Front_Len + 1 .. Front_Len + By'Length) :=
+              By;
+            Result (Front_Len + By'Length + 1 .. Result'Length) :=
+              Source (High + 1 .. Source'Last);
 
             return Result;
          end;
+
+      else
+         return Insert (Source, Before => Low, New_Item => By);
       end if;
    end Replace_Slice;
 
index 077a65c0ecd78318e19dcf1b684f7e48832b9a50..67f5482f95b825dba9f02005676f4d6bf70127e1 100644 (file)
@@ -449,30 +449,40 @@ package body Ada.Strings.Wide_Wide_Fixed is
       High   : Natural;
       By     : Wide_Wide_String) return Wide_Wide_String
    is
-      Result_Length : Natural;
-
    begin
       if Low > Source'Last + 1 or else High < Source'First - 1 then
          raise Index_Error;
-      else
-         Result_Length :=
-           Source'Length - Natural'Max (High - Low + 1, 0) + By'Length;
+      end if;
 
+      if High >= Low then
          declare
+            Front_Len : constant Integer :=
+                          Integer'Max (0, Low - Source'First);
+            --  Length of prefix of Source copied to result
+
+            Back_Len  : constant Integer :=
+                          Integer'Max (0, Source'Last - High);
+            --  Length of suffix of Source copied to result
+
+            Result_Length : constant Integer :=
+                              Front_Len + By'Length + Back_Len;
+            --  Length of result
+
             Result : Wide_Wide_String (1 .. Result_Length);
 
          begin
-            if High >= Low then
-               Result :=
-                  Source (Source'First .. Low - 1) & By &
-                  Source (High + 1 .. Source'Last);
-            else
-               Result := Source (Source'First .. Low - 1) & By &
-                         Source (Low .. Source'Last);
-            end if;
+            Result (1 .. Front_Len) :=
+              Source (Source'First .. Low - 1);
+            Result (Front_Len + 1 .. Front_Len + By'Length) :=
+              By;
+            Result (Front_Len + By'Length + 1 .. Result'Length) :=
+              Source (High + 1 .. Source'Last);
 
             return Result;
          end;
+
+      else
+         return Insert (Source, Before => Low, New_Item => By);
       end if;
    end Replace_Slice;