New testcase, straight out of the asm manual
authorChris Lattner <sabre@nondot.org>
Thu, 15 May 2003 21:02:11 +0000 (21:02 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 15 May 2003 21:02:11 +0000 (21:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6237 91177308-0d34-0410-b5e6-96231b3b80d8

test/Assembler/2003-05-15-SwitchBug.ll [new file with mode: 0644]

diff --git a/test/Assembler/2003-05-15-SwitchBug.ll b/test/Assembler/2003-05-15-SwitchBug.ll
new file mode 100644 (file)
index 0000000..d2b64c4
--- /dev/null
@@ -0,0 +1,7 @@
+
+
+void %test(int %X) {
+  switch int %X, label %dest []
+dest:
+  ret void
+}