New testcase
authorChris Lattner <sabre@nondot.org>
Sat, 23 Aug 2003 22:43:42 +0000 (22:43 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 23 Aug 2003 22:43:42 +0000 (22:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8086 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/LowerSwitch/2003-08-23-EmptySwitch.ll [new file with mode: 0644]

diff --git a/test/Transforms/LowerSwitch/2003-08-23-EmptySwitch.ll b/test/Transforms/LowerSwitch/2003-08-23-EmptySwitch.ll
new file mode 100644 (file)
index 0000000..8b67c23
--- /dev/null
@@ -0,0 +1,7 @@
+; RUN: as < %s | opt -lowerswitch
+
+void %test() {
+       switch uint 0, label %Next []
+Next:
+       ret void
+}