aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/pr49000.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/pr49000.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/pr49000.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/pr49000.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/pr49000.c
deleted file mode 100644
index 32a1cdb35..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/pr49000.c
+++ /dev/null
@@ -1,29 +0,0 @@
-/* PR tree-optimization/49000 */
-/* { dg-do compile } */
-/* { dg-options "-O2 -g" } */
-
-static
-foo (int x, int y)
-{
- return x * y;
-}
-
-static int
-bar (int *z)
-{
- return *z;
-}
-
-void
-baz (void)
-{
- int a = 42;
- int *b = &a;
- foo (bar (&a), 3);
-}
-
-void
-test (void)
-{
- baz ();
-}