Signed-off-by: hmz007 <hmz007@gmail.com> Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
15 lines
315 B
LLVM
15 lines
315 B
LLVM
; RUN: llc -O0 -fast-isel=false -march=x86 < %s | FileCheck %s
|
|
|
|
; No need for branching when the default and only destination follows
|
|
; immediately after the switch.
|
|
; CHECK-LABEL: no_branch:
|
|
; CHECK-NOT: jmp
|
|
; CHECK: ret
|
|
|
|
define void @no_branch(i32 %x) {
|
|
entry:
|
|
switch i32 %x, label %exit [ ]
|
|
exit:
|
|
ret void
|
|
}
|