aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-05-15 21:02:11 +0000
committerChris Lattner <sabre@nondot.org>2003-05-15 21:02:11 +0000
commit2c51711a554d08f1151c4f5356feb17d57d1acfe (patch)
tree3d85b0b610a5113033e57184c11c1e04f472ea9c
parent3e2c5261d6b7f8ff11ad62f66853f473784cce94 (diff)
New testcase, straight out of the asm manual
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6237 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Assembler/2003-05-15-SwitchBug.ll7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Assembler/2003-05-15-SwitchBug.ll b/test/Assembler/2003-05-15-SwitchBug.ll
new file mode 100644
index 0000000000..d2b64c4fd2
--- /dev/null
+++ b/test/Assembler/2003-05-15-SwitchBug.ll
@@ -0,0 +1,7 @@
+
+
+void %test(int %X) {
+ switch int %X, label %dest []
+dest:
+ ret void
+}