Commit the right version of the test

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61302 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/vla.c b/test/CodeGen/vla.c
index 0881520..907de91 100644
--- a/test/CodeGen/vla.c
+++ b/test/CodeGen/vla.c
@@ -9,7 +9,7 @@
   b(arry);
 }
 
-void b(int n)
+int c(int n)
 {
-  sizeof(int[n]);
+  return sizeof(int[n]);
 }