pr35823.adb: Rename to size_attribute.adb.
authorEric Botcazou <ebotcazou@adacore.com>
Sat, 5 Apr 2008 22:56:52 +0000 (22:56 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Sat, 5 Apr 2008 22:56:52 +0000 (22:56 +0000)
* gnat.dg/pr35823.adb: Rename to size_attribute.adb.

From-SVN: r133946

gcc/testsuite/ChangeLog
gcc/testsuite/gnat.dg/pr35823.adb [deleted file]
gcc/testsuite/gnat.dg/size_attribute.adb [new file with mode: 0644]

index 18a45c1..85105c4 100644 (file)
@@ -1,3 +1,7 @@
+2008-04-05  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * gnat.dg/pr35823.adb: Rename to size_attribute.adb.
+
 2008-04-05  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
 
        PR fortran/25829 28655
diff --git a/gcc/testsuite/gnat.dg/pr35823.adb b/gcc/testsuite/gnat.dg/pr35823.adb
deleted file mode 100644 (file)
index e882aa3..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-procedure pr35823 (Arg : in String) is
-   Size : constant Natural := Arg'Size;
-begin
-   null;
-end pr35823;
-
diff --git a/gcc/testsuite/gnat.dg/size_attribute.adb b/gcc/testsuite/gnat.dg/size_attribute.adb
new file mode 100644 (file)
index 0000000..25642e0
--- /dev/null
@@ -0,0 +1,8 @@
+-- PR middle-end/35823
+-- { dg-do compile ]
+
+procedure Size_Attribute (Arg : in String) is
+   Size : constant Natural := Arg'Size;
+begin
+   null;
+end;