blob: 155faa5c6067d03028c460dba13b383a1dd03569 [file] [log] [blame]
Eli Friedman56f2f212011-08-16 21:12:35 +00001; RUN: opt -S -sccp < %s | FileCheck %s
2
3; Make sure we always consider the default edge executable for a switch
4; with no cases.
5declare void @foo()
6define void @test1() {
Stephen Lina76289a2013-07-14 01:50:49 +00007; CHECK-LABEL: define void @test1(
Eli Friedman56f2f212011-08-16 21:12:35 +00008; CHECK: call void @foo()
9 switch i32 undef, label %d []
10d:
11 call void @foo()
12 ret void
13}