blob: 410a407282582fa96ab0be36dd9fe64eafd7e573 [file] [log] [blame]
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00001// RUN: clang-cc -emit-llvm %s -o %t
Chris Lattner761acc12009-12-05 08:22:11 +00002// RUN: grep 'internal constant \[10 x i8\]' %t
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00003// RUN: not grep -F "[5 x i8]" %t
Daniel Dunbarc0489fe2009-03-02 18:50:36 +00004// RUN: not grep "store " %t
Eli Friedman922696f2008-05-19 17:51:16 +00005
6void test(void) {
7 char a[10] = "asdf";
8 char b[10] = { "asdf" };
9}
10