Commit 7531103a by Nick Clifton Committed by Nick Clifton

pr46966.c: Only run on 32-bit+ targets.

	* gcc.dg/graphite/pr46966.c: Only run on 32-bit+ targets.
	* gcc.dg/pr23623.c: Likewise.
	* gcc.dg/pr48784-1.c: Likewise.
	* gcc.dg/pr48784-2.c: Likewise.
	* gcc.dg/pr56997-2.c: Likewise.
	* gcc.dg/sms-6.c: Likewise.
	* gcc.dg/torture/pr60183.c: Likewise.
	* gcc.dg/torture/vec-cvt-1.c: Likewise.
	* gcc.c-torture/execute/20061220-1.x: New.
	* gcc.c-torture/execute/pr43220.x: New.
	* gcc.c-torture/execute/pr51581-1.x: New.
	* gcc.c-torture/execute/pr51581-2.x: New.
	* gcc.c-torture/execute/pr58570.x: New.
	* gcc.c-torture/unsorted/DFcmp.x: New.
	* gcc.c-torture/unsorted/SFset.x: New.

From-SVN: r207909
parent aadc1c43
2014-02-18 Nick Clifton <nickc@redhat.com>
* gcc.dg/graphite/pr46966.c: Only run on 32-bit+ targets.
* gcc.dg/pr23623.c: Likewise.
* gcc.dg/pr48784-1.c: Likewise.
* gcc.dg/pr48784-2.c: Likewise.
* gcc.dg/pr56997-2.c: Likewise.
* gcc.dg/sms-6.c: Likewise.
* gcc.dg/torture/pr60183.c: Likewise.
* gcc.dg/torture/vec-cvt-1.c: Likewise.
* gcc.c-torture/execute/20061220-1.x: New.
* gcc.c-torture/execute/pr43220.x: New.
* gcc.c-torture/execute/pr51581-1.x: New.
* gcc.c-torture/execute/pr51581-2.x: New.
* gcc.c-torture/execute/pr58570.x: New.
* gcc.c-torture/unsorted/DFcmp.x: New.
* gcc.c-torture/unsorted/SFset.x: New.
2014-02-19 Eric Botcazou <ebotcazou@adacore.com>
* gnat.dg/opt31.adb: New test.
......
# asm statements for the RL78 do not work as expected
if { [istarget "rl78-*-*"] } {
return 1;
}
return 0
load_lib target-supports.exp
if { [check_effective_target_int16] } {
return 1
}
return 0;
load_lib target-supports.exp
if { [check_effective_target_int32plus] } {
return 0
}
return 1;
load_lib target-supports.exp
if { [check_effective_target_int32plus] } {
return 0
}
return 1;
load_lib target-supports.exp
if { [check_effective_target_int16] } {
return 1
}
return 0;
load_lib target-supports.exp
if { [check_effective_target_int16] } {
return 1
}
return 0;
load_lib target-supports.exp
if { [check_effective_target_int16] } {
return 1
}
return 0;
/* PR tree-optimization/46966 */
/* { dg-do compile } */
/* This test is too big for small targets. */
/* { dg-require-effective-target size32plus } */
/* { dg-options "-O -floop-interchange -ffast-math -fno-tree-copy-prop -fno-tree-loop-im" } */
int a[1000][1000];
......
/* { dg-do compile } */
/* { dg-require-effective-target size32plus } */
/* { dg-options "-fstrict-volatile-bitfields -fdump-rtl-final" } */
/* With -fstrict-volatile-bitfields, the volatile accesses to bf2.b
......@@ -45,4 +46,3 @@ void readb(void)
variable, we need to give a count of 12 instead of 6 here. */
/* { dg-final { scan-rtl-dump-times "mem/v(/.)*:SI" 12 "final" } } */
/* { dg-final { cleanup-rtl-dump "final" } } */
/* { dg-do run } */
/* { dg-require-effective-target size32plus } */
/* { dg-options "-fstrict-volatile-bitfields" } */
extern void abort (void);
......
/* { dg-do run } */
/* { dg-require-effective-target size32plus } */
/* { dg-options "-fno-strict-volatile-bitfields" } */
extern void abort (void);
......
/* Test volatile access to unaligned field. */
/* { dg-do run } */
/* { dg-require-effective-target size32plus } */
/* { dg-options "-fstrict-volatile-bitfields" } */
extern void abort (void);
......
/* { dg-do run } */
/* { dg-require-effective-target size32plus } */
/* { dg-options "-O2 -fmodulo-sched -fdump-rtl-sms --param sms-min-sc=1" } */
/* { dg-options "-O2 -fmodulo-sched -fdump-rtl-sms --param sms-min-sc=1 -fmodulo-sched-allow-regmoves" { target powerpc*-*-* } } */
......@@ -17,16 +18,13 @@ void foo (int * __restrict__ a, int * __restrict__ b, int * __restrict__ c)
}
}
int a[100], b[100], c[100];
int main()
{
#if (__SIZEOF_INT__ <= 2)
int i;
long res;
#else
int i, res;
#endif
int res;
for(i = 0; i < 100; i++)
{
b[i] = c[i] = i;
......@@ -47,4 +45,3 @@ int main()
/* { dg-final { scan-rtl-dump-times "SMS succeeded" 1 "sms" { target spu-*-* } } } */
/* { dg-final { scan-rtl-dump-times "SMS succeeded" 3 "sms" { target powerpc*-*-* } } } */
/* { dg-final { cleanup-rtl-dump "sms" } } */
/* { dg-do run } */
/* { dg-require-effective-target size32plus } */
/* Large so an out-of-bound read will crash. */
unsigned char c[0x30001] = { 1 };
......
/* { dg-do run } */
/* This test is too big for small targets. */
/* { dg-require-effective-target size32plus } */
#include <stdlib.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment