diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-23 22:43:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-23 22:43:42 +0000 |
commit | 4d34adad6778ac232c8bf0a9d41cd5c20faed153 (patch) | |
tree | 5923b6156797328ae4153d2385397bd4fc201dca | |
parent | 47ddea2d2adc47337a4c296a5cd7b9dab30cfa23 (diff) |
New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8086 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/LowerSwitch/2003-08-23-EmptySwitch.ll | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Transforms/LowerSwitch/2003-08-23-EmptySwitch.ll b/test/Transforms/LowerSwitch/2003-08-23-EmptySwitch.ll new file mode 100644 index 0000000000..8b67c23e6c --- /dev/null +++ b/test/Transforms/LowerSwitch/2003-08-23-EmptySwitch.ll @@ -0,0 +1,7 @@ +; RUN: as < %s | opt -lowerswitch + +void %test() { + switch uint 0, label %Next [] +Next: + ret void +} |