diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2010-11-25 11:53:04 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2010-11-25 11:53:04 +0000 |
commit | c8230704c44609131a832307f2eee04df3206eb8 (patch) | |
tree | e6dcd4ce0c9d17a641addf90bab0e830d9ef00fa /gcc | |
parent | 9ef1bf719b91f4409273912c50162b722ae89b66 (diff) | |
download | gcc-c8230704c44609131a832307f2eee04df3206eb8.zip gcc-c8230704c44609131a832307f2eee04df3206eb8.tar.gz gcc-c8230704c44609131a832307f2eee04df3206eb8.tar.bz2 |
loop_optimization7.adb: Remove dg-require-effective-target.
* gnat.dg/loop_optimization7.adb: Remove dg-require-effective-target.
* gnat.dg/sse_nolib.adb: Likewise.
From-SVN: r167143
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gnat.dg/loop_optimization7.adb | 1 | ||||
-rw-r--r-- | gcc/testsuite/gnat.dg/sse_nolib.adb | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 37c5b45..bc51b57 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2010-11-25 Eric Botcazou <ebotcazou@adacore.com> + + * gnat.dg/loop_optimization7.adb: Remove dg-require-effective-target. + * gnat.dg/sse_nolib.adb: Likewise. + 2010-11-25 Alexander Monakov <amonakov@ispras.ru> PR rtl-optimization/46585 diff --git a/gcc/testsuite/gnat.dg/loop_optimization7.adb b/gcc/testsuite/gnat.dg/loop_optimization7.adb index c6a5dc9..1668394 100644 --- a/gcc/testsuite/gnat.dg/loop_optimization7.adb +++ b/gcc/testsuite/gnat.dg/loop_optimization7.adb @@ -1,7 +1,6 @@ -- { dg-do compile } -- { dg-options "-O3" } -- { dg-options "-O3 -msse" { target i?86-*-* x86_64-*-* } } --- { dg-require-effective-target sse } package body Loop_Optimization7 is diff --git a/gcc/testsuite/gnat.dg/sse_nolib.adb b/gcc/testsuite/gnat.dg/sse_nolib.adb index d678b9a..a6b7893 100644 --- a/gcc/testsuite/gnat.dg/sse_nolib.adb +++ b/gcc/testsuite/gnat.dg/sse_nolib.adb @@ -1,6 +1,5 @@ -- { dg-do run { target i?86-*-* x86_64-*-* } } -- { dg-options "-O1 -msse" } --- { dg-require-effective-target sse } with Ada.Unchecked_Conversion; @@ -11,7 +10,7 @@ procedure SSE_Nolib is package SSE_Types is VECTOR_ALIGN : constant := 16; VECTOR_BYTES : constant := 16; - + type m128 is private; private type m128 is array (1 .. 4) of Float; |