aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20010118-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/20010118-1.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/20010118-1.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/20010118-1.c b/gcc/testsuite/gcc.c-torture/compile/20010118-1.c
deleted file mode 100644
index 6d1fc6431c6..00000000000
--- a/gcc/testsuite/gcc.c-torture/compile/20010118-1.c
+++ /dev/null
@@ -1,21 +0,0 @@
-static unsigned int bar(void *h, unsigned int n)
-{
- static int i;
- return i++;
-}
-
-static void baz(unsigned int *x)
-{
- (*x)++;
-}
-
-long
-foo(void *h, unsigned int l)
-{
- unsigned int n;
- long m;
- n = bar(h, 0);
- n = bar(h, n);
- m = ({ baz(&n); 21; });
- return m;
-}