[LLVM][IR] Use splat syntax when printing ConstantExpr based splats. (#116856)
[llvm-project.git] / clang / test / CodeGen / 2009-08-14-vararray-crash.c
blob7f489bcff1fc3d3b84012b76c39ea1e88dfe12b8
1 // RUN: %clang_cc1 -emit-llvm < %s
3 void sum1(int rb) {
4 typedef unsigned char imgrow[rb];
5 typedef imgrow img[rb];
7 const img *br;
8 int y;
10 (*br)[y];