Commit the right version of the test

llvm-svn: 61302
diff --git a/clang/test/CodeGen/vla.c b/clang/test/CodeGen/vla.c
index 0881520..907de91 100644
--- a/clang/test/CodeGen/vla.c
+++ b/clang/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]);
 }