From 2c51711a554d08f1151c4f5356feb17d57d1acfe Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 15 May 2003 21:02:11 +0000 Subject: [PATCH] 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 --- test/Assembler/2003-05-15-SwitchBug.ll | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/Assembler/2003-05-15-SwitchBug.ll diff --git a/test/Assembler/2003-05-15-SwitchBug.ll b/test/Assembler/2003-05-15-SwitchBug.ll new file mode 100644 index 00000000000..d2b64c4fd24 --- /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 +}