diff options
Diffstat (limited to 'llvm/test/Transforms/SCCP/switch.ll')
-rw-r--r-- | llvm/test/Transforms/SCCP/switch.ll | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/llvm/test/Transforms/SCCP/switch.ll b/llvm/test/Transforms/SCCP/switch.ll deleted file mode 100644 index 155faa5c606..00000000000 --- a/llvm/test/Transforms/SCCP/switch.ll +++ /dev/null @@ -1,13 +0,0 @@ -; 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-LABEL: define void @test1( -; CHECK: call void @foo() - switch i32 undef, label %d [] -d: - call void @foo() - ret void -} |