aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/Wunreachable-6.c
diff options
context:
space:
mode:
authorNo Author <no-author@gcc.gnu.org>2003-08-04 12:50:23 +0000
committerNo Author <no-author@gcc.gnu.org>2003-08-04 12:50:23 +0000
commit89c33093fce932db969445f2c314d9b6c43f0a24 (patch)
tree10c186e9100213642541a9d7d9d83680a1c42c2b /gcc/testsuite/gcc.dg/Wunreachable-6.c
parent73b957175e53b073ef54d9012de00026297a4829 (diff)
This commit was manufactured by cvs2svn to create tagreleases/gcc-3.3.1
'gcc_3_3_1_release'. From-SVN: r70145
Diffstat (limited to 'gcc/testsuite/gcc.dg/Wunreachable-6.c')
-rw-r--r--gcc/testsuite/gcc.dg/Wunreachable-6.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/testsuite/gcc.dg/Wunreachable-6.c b/gcc/testsuite/gcc.dg/Wunreachable-6.c
deleted file mode 100644
index 77b6228fc86..00000000000
--- a/gcc/testsuite/gcc.dg/Wunreachable-6.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/* PR c/11370 */
-/* { dg-do compile } */
-/* { dg-options "-Wunreachable-code" } */
-
-int main(int argc, char *argv[])
-{
- if (argc != 1)
- exit(1);
-
- {
- int ix; /* { dg-bogus "will never be executed" } */
- ix = printf("hello\n");
- printf("%d\n", ix);
- }
-
- return 0;
-}
-