aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/pr49504.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/pr49504.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/pr49504.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr49504.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/pr49504.c
deleted file mode 100644
index 503e6c238..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr49504.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/* PR target/49504 */
-/* { dg-do run { target { x32 } } } */
-/* { dg-options "-O" } */
-
-unsigned long long
-foo (const void* p, unsigned long long q)
-{
- unsigned long long a = (((unsigned long long) ((unsigned long) p)) + q) >> 32;
- return a;
-}
-
-int
-main ()
-{
- if (foo (foo, 0x100000000ULL) != 0x1)
- __builtin_abort ();
- return 0;
-}