mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-11 08:07:22 +00:00
1fc291f0d3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137755 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
294 B
LLVM
14 lines
294 B
LLVM
; RUN: opt -S -sccp < %s | FileCheck %s
|
|
|
|
; Make sure we always consider the default edge executable for a switch
|
|
; with no cases.
|
|
declare void @foo()
|
|
define void @test1() {
|
|
; CHECK: define void @test1
|
|
; CHECK: call void @foo()
|
|
switch i32 undef, label %d []
|
|
d:
|
|
call void @foo()
|
|
ret void
|
|
}
|