aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/pr29254.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/pr29254.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/pr29254.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/pr29254.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/pr29254.c
deleted file mode 100644
index 598b6bf7b..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/pr29254.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O3 -Werror" } */
-
-list_compare (int * list1)
-{
- if (list1)
- value_compare ();
-}
-
-func1 (int * f){}
-
-value_compare (int * a)
-{
- if (a)
- list_compare (a);
-}
-
-func2 (const int * fb)
-{
- func1 ((int *) fb); /* { dg-bogus "discards qualifiers" } */
-}