aboutsummaryrefslogtreecommitdiffstats
path: root/test/Assembler
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 /test/Assembler
parent3e2c5261d6b7f8ff11ad62f66853f473784cce94 (diff)
downloadexternal_llvm-2c51711a554d08f1151c4f5356feb17d57d1acfe.zip
external_llvm-2c51711a554d08f1151c4f5356feb17d57d1acfe.tar.gz
external_llvm-2c51711a554d08f1151c4f5356feb17d57d1acfe.tar.bz2
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
Diffstat (limited to 'test/Assembler')
-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 0000000..d2b64c4
--- /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
+}