XFAIL addr1.ads and atomic1.ads on x32
authorH.J. Lu <hongjiu.lu@intel.com>
Thu, 14 Nov 2013 12:40:15 +0000 (12:40 +0000)
committerH.J. Lu <hjl@gcc.gnu.org>
Thu, 14 Nov 2013 12:40:15 +0000 (04:40 -0800)
* gnat.dg/specs/addr1.ads: XFAIL on x32.
* gnat.dg/specs/atomic1.ads: Likewise.

From-SVN: r204789

gcc/testsuite/ChangeLog
gcc/testsuite/gnat.dg/specs/addr1.ads
gcc/testsuite/gnat.dg/specs/atomic1.ads

index 58f311d..d89993b 100644 (file)
@@ -1,3 +1,8 @@
+2013-11-14  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * gnat.dg/specs/addr1.ads: XFAIL on x32.
+       * gnat.dg/specs/atomic1.ads: Likewise.
+
 2013-11-14  James Greenhalgh  <james.greenhalgh@arm.com>
 
        * gcc.target/aarch64/cpu-diagnostics-2.c: Change "-mcpu="
index bcb833b..b357115 100644 (file)
@@ -21,7 +21,7 @@ package Addr1 is
   for Obj1'Address use A'Address; -- { dg-bogus "(alignment|erroneous)" }
 
   Obj2: Rec2;
-  for Obj2'Address use A'Address; -- { dg-bogus "(alignment|erroneous)" "" { xfail mips*-*-* } }
+  for Obj2'Address use A'Address; -- { dg-bogus "(alignment|erroneous)" "" { xfail mips*-*-* { { i?86-*-* x86_64-*-* } && x32 } } }
 
   Obj3: Rec1;
   for Obj3'Address use A(1)'Address; -- { dg-bogus "(alignment|erroneous)" }
index 02e98b6..2994f2a 100644 (file)
@@ -6,11 +6,11 @@ package Atomic1 is
   type UA is access all Arr;
 
   U : UA;
-  pragma Atomic (U);  -- { dg-error "atomic access" "" { xfail mips*-*-* } }
+  pragma Atomic (U);  -- { dg-error "atomic access" "" { xfail mips*-*-* { { i?86-*-* x86_64-*-* } && x32 } } }
 
   type R is record
     U : UA;
-    pragma Atomic (U);  -- { dg-error "atomic access" "" { xfail mips*-*-* } }
+    pragma Atomic (U);  -- { dg-error "atomic access" "" { xfail mips*-*-* { { i?86-*-* x86_64-*-* } && x32 } } }
   end record;
 
 end Atomic1;