aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/guality/pr41616-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/guality/pr41616-1.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/guality/pr41616-1.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/guality/pr41616-1.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/guality/pr41616-1.c
deleted file mode 100644
index 24f64ab08..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/guality/pr41616-1.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/* { dg-do run { xfail *-*-* } } */
-/* { dg-options "-g" } */
-
-#include "guality.h"
-
-inline int f(int *a)
-{
- return *a;
-}
-
-int
-main(int argc, char *argv[])
-{
- int b = -1;
- GUALCHKVAL (b);
- if (argc > 0)
- b = -f(&b);
- GUALCHKVAL (b);
- return b;
-}