* gnat.dg/test_raise_from_pure.adb: XFAIL for the ARM.
* gnat.dg/warn5.adb: Expect warning on the ARM.
From-SVN: r155505
+2009-12-29 Eric Botcazou <ebotcazou@adacore.com>
+
+ * gnat.dg/test_raise_from_pure.adb: XFAIL for the ARM.
+ * gnat.dg/warn5.adb: Expect warning on the ARM.
+
2009-12-28 Jason Merrill <jason@redhat.com>
PR c++/42447
--- { dg-do run }
--- { dg-options "-O2" }
+-- { dg-do run { xfail arm*-*-* } }
+-- { dg-options "-O2" }
+
+-- This is an optimization test and its failure is only a missed optimization.
+-- For technical reasons it cannot pass with SJLJ exceptions.
+
with Raise_From_Pure; use Raise_From_Pure;
+
procedure test_raise_from_pure is
K : Integer;
begin
function Pointer (Pos : Natural; List : List_Type) return Pointer_Type is
begin
- return To_Ptr(List.A(Pos)'Address); -- { dg-warning "source alignment" "" { target alpha*-*-* hppa*-*-* ia64-*-* mips*-*-* sparc*-*-* } }
+ return To_Ptr(List.A(Pos)'Address); -- { dg-warning "source alignment" "" { target alpha*-*-* arm*-*-* hppa*-*-* ia64-*-* mips*-*-* sparc*-*-* } }
end;
begin