Make sure to emit the size expression for sizeof(type)

llvm-svn: 61301
diff --git a/clang/test/CodeGen/vla.c b/clang/test/CodeGen/vla.c
index a584020..0881520 100644
--- a/clang/test/CodeGen/vla.c
+++ b/clang/test/CodeGen/vla.c
@@ -8,3 +8,8 @@
   arry[0] = 10;
   b(arry);
 }
+
+void b(int n)
+{
+  sizeof(int[n]);
+}