mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 11:50:47 -05:00
11 lines
229 B
C
11 lines
229 B
C
|
|
// RUN: clang-cc -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
|
||
|
|
|
||
|
|
void test(void) {
|
||
|
|
char a[10] = "asdf";
|
||
|
|
char b[10] = { "asdf" };
|
||
|
|
}
|
||
|
|
|