blob: 3768d9c9a677cd6808547c0cc485a855f80dd555 [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001; RUN: llvm-as %s -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3; Check minimal switch statement
4
Tanya Lattner74bb9f52008-02-14 07:57:12 +00005define void @test(i32 %X) {
6 switch i32 %X, label %dest [
7 ]
8
9dest: ; preds = %0
10 ret void
Dan Gohmanf17a25c2007-07-18 16:29:46 +000011}