repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove wasteful caching. This isn't needed for correctness because any function
[llvm.git]
/
test
/
Assembler
/
2003-05-15-SwitchBug.ll
blob
3768d9c9a677cd6808547c0cc485a855f80dd555
1
; RUN: llvm-as %s -o /dev/null
2
3
; Check minimal switch statement
4
5
define void @test(i32 %X) {
6
switch i32 %X, label %dest [
7
]
8
9
dest: ; preds = %0
10
ret void
11
}