aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.target/powerpc/darwin-longlong.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.target/powerpc/darwin-longlong.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.target/powerpc/darwin-longlong.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.target/powerpc/darwin-longlong.c b/gcc-4.8.1/gcc/testsuite/gcc.target/powerpc/darwin-longlong.c
deleted file mode 100644
index 0692b3d80..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.target/powerpc/darwin-longlong.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/* { dg-do run { target powerpc*-*-* } } */
-/* { dg-require-effective-target powerpc64 } */
-/* { dg-options "-mcpu=G5" } */
-
-#include <stdlib.h>
-
-int msw(long long in)
-{
- union {
- long long ll;
- int i[2];
- } ud;
- ud.ll = in;
- return ud.i[0];
-}
-
-int main()
-{
- if (msw(1) != 0)
- abort();
- exit(0);
-}