aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/pr51491.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/pr51491.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/pr51491.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/pr51491.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/pr51491.c
deleted file mode 100644
index 50aa55f7a..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/pr51491.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O2 -fdump-rtl-expand" } */
-
-
-int g(int*);
-
-int f(void)
-{
- int tt = 0;
- int t = 4;
- {
- int a[t];
- tt = g(a);
- tt += a[0];
- }
- {
- int a[4];
- tt += g(a);
- tt += a[0];
- }
- return tt;
-}
-
-/* { dg-final { scan-rtl-dump-times "Partition" 1 "expand"} } */
-/* { dg-final { cleanup-rtl-dump "expand" } } */