diff options
Diffstat (limited to 'gcc/testsuite/c-c++-common/Wimplicit-fallthrough-8.c')
-rw-r--r-- | gcc/testsuite/c-c++-common/Wimplicit-fallthrough-8.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/testsuite/c-c++-common/Wimplicit-fallthrough-8.c b/gcc/testsuite/c-c++-common/Wimplicit-fallthrough-8.c index 0ed7928fd79..d146c788b74 100644 --- a/gcc/testsuite/c-c++-common/Wimplicit-fallthrough-8.c +++ b/gcc/testsuite/c-c++-common/Wimplicit-fallthrough-8.c @@ -4,7 +4,7 @@ extern void grace (int); -int +void fn1 (int i) { switch (i) @@ -16,7 +16,7 @@ fn1 (int i) done:; } -int +void fn2 (int i) { switch (i) @@ -32,7 +32,7 @@ fn2 (int i) done:; } -int +void fn3 (int i) { switch (i) @@ -46,7 +46,7 @@ fn3 (int i) done:; } -int +void fn4 (int i) { switch (i) @@ -64,7 +64,7 @@ fn4 (int i) done:; } -int +void fn5 (int i) { switch (i) @@ -83,7 +83,7 @@ fn5 (int i) done:; } -int +void fn6 (int i) { switch (i) |