add test3

llvm-svn: 38850
This commit is contained in:
Chris Lattner 2006-08-10 05:59:30 +00:00
parent 503fadc90f
commit 97353f2327
1 changed files with 12 additions and 0 deletions

View File

@ -17,3 +17,15 @@ int test2() {
;
for (int X = 0; 0; 0);
}
int test3() {
switch (0) {
case 4:
if (0) {
case 6: ;
}
default:
;
}
}