aboutsummaryrefslogtreecommitdiff
path: root/test/FrontendC/2002-04-07-SwitchStmt.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2002-04-07-SwitchStmt.c')
-rw-r--r--test/FrontendC/2002-04-07-SwitchStmt.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/FrontendC/2002-04-07-SwitchStmt.c b/test/FrontendC/2002-04-07-SwitchStmt.c
deleted file mode 100644
index 33e9c3d7a78a..000000000000
--- a/test/FrontendC/2002-04-07-SwitchStmt.c
+++ /dev/null
@@ -1,22 +0,0 @@
-// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
-
-int printf(const char *, ...);
-int foo();
-
-int main() {
- while (foo()) {
- switch (foo()) {
- case 0:
- case 1:
- case 2:
- case 3:
- printf("3");
- case 4: printf("4");
- case 5:
- case 6:
- default:
- break;
- }
- }
- return 0;
-}