aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/991008-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/991008-1.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/991008-1.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/991008-1.c b/gcc/testsuite/gcc.c-torture/compile/991008-1.c
deleted file mode 100644
index ba668fe25b2..00000000000
--- a/gcc/testsuite/gcc.c-torture/compile/991008-1.c
+++ /dev/null
@@ -1,23 +0,0 @@
-typedef struct {
- int x;
-} FILE;
-extern void fputs (const char *, FILE *);
-
-int mView;
-void foo (FILE * out, int aIndent)
-{
- if (0 != mView) {
- aIndent++;
- aIndent--;
- {
- int __t = aIndent;
- while (--__t >= 0)
- fputs (" ", out);
- }
-
- } {
- int __t = aIndent;
- while (--__t >= 0)
- fputs (" ", out);
- }
-}