1*f4a2713aSLionel Sambuc // Make sure unbounded arrays compile with debug information. 2*f4a2713aSLionel Sambuc // 3*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm -g %s -o - 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc // PR1068 6*f4a2713aSLionel Sambuc 7*f4a2713aSLionel Sambuc struct Object { 8*f4a2713aSLionel Sambuc char buffer[]; 9*f4a2713aSLionel Sambuc }; 10*f4a2713aSLionel Sambuc main(int argc,char ** argv)11*f4a2713aSLionel Sambucint main(int argc, char** argv) { 12*f4a2713aSLionel Sambuc new Object; 13*f4a2713aSLionel Sambuc return 0; 14*f4a2713aSLionel Sambuc } 15