2009-03-03 02:50:36 +08:00
|
|
|
// RUN: clang -emit-llvm %s -o %t &&
|
|
|
|
// RUN: grep 'internal constant \[10 x i8\]' %t &&
|
|
|
|
// RUN: not grep -F "[5 x i8]" %t &&
|
|
|
|
// RUN: not grep "store " %t
|
2008-05-20 01:51:16 +08:00
|
|
|
|
|
|
|
void test(void) {
|
|
|
|
char a[10] = "asdf";
|
|
|
|
char b[10] = { "asdf" };
|
|
|
|
}
|
|
|
|
|