aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.target/spu/pr40001.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.target/spu/pr40001.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.target/spu/pr40001.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.target/spu/pr40001.c b/gcc-4.8.1/gcc/testsuite/gcc.target/spu/pr40001.c
deleted file mode 100644
index 442f72d4f..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.target/spu/pr40001.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O" } */
-
-void *
-sbrk (unsigned int increment)
-{
- volatile register
- __attribute__ ((__spu_vector__)) unsigned int sp_r1 __asm__ ("1");
- unsigned int sps;
-
- sps = __builtin_spu_extract (sp_r1, 0);
- if (sps - 4096 >= increment)
- return 0;
- else
- return ((void *) -1);
-}
-