diff options
author | Georg-Johann Lay <avr@gjlay.de> | 2016-11-22 15:06:47 +0000 |
---|---|---|
committer | Georg-Johann Lay <gjl@gcc.gnu.org> | 2016-11-22 15:06:47 +0000 |
commit | 0e721ce73e3e8ffbdc02f03839fd9e89c6db136e (patch) | |
tree | b8d07fb2d3b13c729e83c50939f610b64ce10c73 /gcc | |
parent | 88c888f1137954fd18c04191b3b8c96ab6681c0c (diff) | |
download | gcc-0e721ce73e3e8ffbdc02f03839fd9e89c6db136e.zip gcc-0e721ce73e3e8ffbdc02f03839fd9e89c6db136e.tar.gz gcc-0e721ce73e3e8ffbdc02f03839fd9e89c6db136e.tar.bz2 |
loop-split.c: Require int32plus.
gcc/testsuite/
* gcc.dg/loop-split.c: Require int32plus.
* gcc.dg/stack-layout-dynamic-1.c: Require ptr32plus.
From-SVN: r242701
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/loop-split.c | 1 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/stack-layout-dynamic-1.c | 1 |
3 files changed, 7 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 57b8efd..c3d84ea 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2016-11-22 Georg-Johann Lay <avr@gjlay.de> + + * gcc.dg/loop-split.c: Require int32plus. + * gcc.dg/stack-layout-dynamic-1.c: Require ptr32plus. + 2016-11-22 Bernd Edlinger <bernd.edlinger@hotmail.de> * gcc.target/arm/pr53447-5.c: Fix test expectations for neon-fpu. diff --git a/gcc/testsuite/gcc.dg/loop-split.c b/gcc/testsuite/gcc.dg/loop-split.c index 859e2ec..81fdb70 100644 --- a/gcc/testsuite/gcc.dg/loop-split.c +++ b/gcc/testsuite/gcc.dg/loop-split.c @@ -1,5 +1,6 @@ /* { dg-do run } */ /* { dg-options "-O2 -fsplit-loops -fdump-tree-lsplit-details" } */ +/* { dg-require-effective-target int32plus } */ #ifdef __cplusplus extern "C" int printf (const char *, ...); diff --git a/gcc/testsuite/gcc.dg/stack-layout-dynamic-1.c b/gcc/testsuite/gcc.dg/stack-layout-dynamic-1.c index 6dc17af..9f2d37d 100644 --- a/gcc/testsuite/gcc.dg/stack-layout-dynamic-1.c +++ b/gcc/testsuite/gcc.dg/stack-layout-dynamic-1.c @@ -2,6 +2,7 @@ in one pass together with normal local variables. */ /* { dg-do compile } */ /* { dg-options "-O0 -fomit-frame-pointer" } */ +/* { dg-require-effective-target ptr32plus } */ extern void bar (void *, void *, void *); void foo (void) |