summaryrefslogtreecommitdiff
path: root/gcc_arm/testsuite/gcc.wendy/gnu21.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc_arm/testsuite/gcc.wendy/gnu21.c')
-rwxr-xr-xgcc_arm/testsuite/gcc.wendy/gnu21.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/gcc_arm/testsuite/gcc.wendy/gnu21.c b/gcc_arm/testsuite/gcc.wendy/gnu21.c
deleted file mode 100755
index 7a3067b..0000000
--- a/gcc_arm/testsuite/gcc.wendy/gnu21.c
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
-Message-Id: <8712292244.AA24155@prep.ai.mit.edu>
-Date: Mon, 28 Dec 87 21:05:20 PST
-From: Greg Satz <satz@clutter.cisco.com>
-To: bug-gcc@prep.ai.mit.edu
-Subject: Error handling bug?
-
-The following program causes cc1 to make a core file. Since it was
-caused by a syntax error, I didn't spend that much time tracking it
-down. I was able to reduce the example to this small result. Could
-someone check to see if this bug exists in the Vax and Sun versions as
-well and let me know? Thanks!
-*/
-
-int global;
-main()
-{
- int ch;
-
- if (global) {
- printf("here");
- } else {
- if (((ch & 0x7f) == 0)) && (ch & 1)) { /* syntax error here */
- if (!ch)
- return(0);
- ch = 0;
- }
- }
-}
-