This makes it ok to use @"foo" without a declaration for NSConstantString. Patch by David Chisnall! llvm-svn: 52593
14 lines
171 B
C
14 lines
171 B
C
// RUN: clang -emit-llvm < %s -o -
|
|
// PR2419
|
|
|
|
struct Mem {
|
|
union {
|
|
} u;
|
|
};
|
|
|
|
struct Mem *columnMem(){
|
|
static const struct Mem nullMem = { {} };
|
|
}
|
|
|
|
|