Support fully general case expressions, patch by Sanghyeon Seo!


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44453 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/switch.c b/test/CodeGen/switch.c
index 68313c0..a4d77b9 100644
--- a/test/CodeGen/switch.c
+++ b/test/CodeGen/switch.c
@@ -3,6 +3,8 @@
 int foo(int i) {
   int j = 0;
   switch (i) {
+  case -1:
+    j = 1; break;
   case 1 : 
     j = 2; break;
   case 2: