1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/Assembler/2003-05-15-SwitchBug.ll

10 lines
158 B
LLVM
Raw Normal View History

; RUN: llvm-upgrade < %s | llvm-as -o /dev/null -f
; Check minimal switch statement
void %test(int %X) {
switch int %X, label %dest []
dest:
ret void
}