Simplify aggregate initilizer implementation. Use the CodeGenModule::EmitConstantExpr method when 
possible.
Fix mediabench/mpeg2/mpeg2dec test.



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@47336 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/init.c b/test/CodeGen/init.c
index f773b8b..fd0735b 100644
--- a/test/CodeGen/init.c
+++ b/test/CodeGen/init.c
@@ -11,4 +11,5 @@
   int *c[2] = { &a[1][1], &b[2][2] };
   int *d[2][2] = { {&a[1][1], &b[2][2]}, {&a[0][0], &b[1][1]} };
   int *e[3][3] = { {&a[1][1], &b[2][2]}, {&a[0][0], &b[1][1]} };
+  char ext[3][3] = {".Y",".U",".V"};
 }