* gnat.dg/unchecked_convert4.adb: Add missing rep clause.
authorEric Botcazou <ebotcazou@adacore.com>
Sat, 17 Oct 2009 12:06:56 +0000 (12:06 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Sat, 17 Oct 2009 12:06:56 +0000 (12:06 +0000)
From-SVN: r152938

gcc/testsuite/ChangeLog
gcc/testsuite/gnat.dg/unchecked_convert4.adb

index 2e9f67d46baf6f6439e688cc367fac657fc11212..8a58878dfe00c8c8980053a55b237363689bb90d 100644 (file)
@@ -1,3 +1,7 @@
+2009-10-17  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * gnat.dg/unchecked_convert4.adb: Add missing rep clause.
+
 2009-10-17  Eric Botcazou  <ebotcazou@adacore.com>
 
        * gnat.dg/aggr11.adb: New test.
index 4f766ae04feddcacfea33f882643d83233d47b57..8f3a1aa4efee4fc259798739b4ecf013aaf26d7b 100644 (file)
@@ -9,6 +9,7 @@ procedure Unchecked_Convert4 is
   type Rec is record
     I : Uint32;
   end record;
+  for Rec'Size use 32;
   pragma Atomic (Rec);
 
   function Conv is new Unchecked_Conversion (Uint32, Rec);